Skip to main content Link Search Menu Expand Document (external link)

Corner the queens

Two players move in turns a queen on a chessboard, either left, down or diagonally left-down. The first player to reach the lower left corner wins. For what initial positions is the starting player sure to win?

To make the problem more interesting, you are given a grid dimension rows*cols and have to find out the proportion of initial winning positions.

Simulation

Let’s mark on the grid the loosing positions, by inspecting the possibilities of the players. Then the cells (2,3) and (3,2) are the first loosing positions. All cells in the same column, row or diagonal are winning positions, because the player can place his opponent in a loosing position. Loosing positions are symmetric, as the game is symmetric. Hence we can focus only on the upper diagonal loosing positions. Let Y be the set of all y coordinates of the loosing positions discovered so far and (x,y) be the last one. We can start with Y={3} and (x,y)=(2,3). Then the next possible position is (x’, y’) = (x+1, y+2), and while x’ is in Y, the next possible position (x’, y’) = (x’+1. y’+1).

The problem can be solved in linear time in the grid coordinates, which is ok, since the given grid coordinates are bounded by 10e6.

Linear time solution

In 1907 Wythoff has shown that all loosing positions are of the form \(\lfloor k \Phi \rfloor\) and \(\lfloor k \Phi^2 \rfloor\) for every non-negative integer \(k\).

Comments