Question
The rule of Gomoku(Five in a Row) is that on an $n × n$ square chessboard, when there are five or more go pieces of the same color in any direction horizontally, vertically and diagonally, you win.
I want to know the maximum number of go pieces $P_5(n)$ that can be placed on the $n×n$ gomoku chessboard without five chess pieces being connected in a line.
Strategy
I thought of two strategies.
The first one is to form a group of four. This strategy has about 64% space utilization.
The second strategy is obtained using the greedy backtracking algorithm. Each vacant position is placed in the first allowed position. This strategy has about 80% space utilization.
It seems to be the optimal solution on the scale of $15 * 15$, but I cannot prove by induction that this property can be maintained on a larger chessboard.

