![]() |
VOOZH | about |
Given 2n counters where n > 1. You have to place these 2n counters on an n Ć n board so that no more than two counters are in the same row, column, or diagonal.
Since we need to place 2n counters on an n Ć n board, and each row and each column can contain at most two counters, it follows that every row and every column must contain exactly two counters.
Case 1: Even n (n = 2k)
We can construct a solution by placing the counters symmetrically in the left and right halves of the board. Number the rows from top to bottom and the columns from left to right.
This gives a symmetric placement of counters across the board.
For example, when n=8, the board is divided into two halves of 4 columns each.
Case 2 : Odd n (n = 2k + 1)
Again, number the rows from top to bottom and the columns from left to right. The construction is symmetric about the central square.
For example, when n = 7, this pattern produces a valid arrangement on a 7 Ć 7 board.