Editorial for Baltic OI '08 P1 - Game


Remember to use this editorial only when stuck, and not to copy-paste code from it. Please be respectful to the problem author and editorialist.
Submitting an official solution before solving the problem yourself is a bannable offence.

The problem is a typical game theory problem. Let us denote by D the distance between A's and B's starting points. Both players have the same distance D to travel. Therefore, it is obvious that both players should move along a shortest path between starting points. Otherwise, a player would make at least D+1 moves and his opponent would win. Since player A moves first, he will win if and only if player B is unable to reach the same square as player A in D/2 moves. Hence, if D is odd, then A wins. So, from now on, we assume that D=2d.

Since players move along shortest paths, it is easy to find for each player, all such squares that can be reached in exactly p moves. We can do this by running the BFS algorithm twice and finding the distances from A's and B's starting points to all the squares. After p moves, player A can be on one of the squares whose distance to A's starting point is p and the distance to B's starting point is Dp (and conversely for player B).

This basic observation is necessary to solve this problem correctly, as it gives us the order in which all configurations of A's and B's positions should be processed.

Model Solution

This solution uses simple dynamic programming. Let LAk and LBk be the lists of such squares which can be reached by players A and B, respectively, in k moves, and can be reached by their respective opponent in Dk moves. By LAk[i] and LBk[i], we will denote the ith elements of these lists. Let Tk,i,j be true if after dk moves, player A has a winning strategy when his piece is on the square LAdk[i] and player B is on the square LBdk[j]. If B has a winning strategy, then Tk,i,j is false. Please note that LAd equals LBd, and T0,i,j is true for all i and j such that LAd[i]LBd[j] (that is, the pieces cannot stand on the same square).

Please note that A has a winning strategy, iff he can make such a move, after which B can only make moves, after which A still has a winning strategy. More formally, let NextAk,i be the list of squares from LAdk+1 onto which player A can move from LAdk[i]. Let NextBk,j be a similar list for player B. If for some iNextAk,i, for all jNextBk,j the value of Tk1,i,j is true, then Tk,i,j is true, otherwise it is false.

Using the above observation, we can calculate values Tk,i,j for k=1,2,,d. Player A has a winning strategy in the whole game if and only if Td,1,1 is true.

The only problem is to compute NextA and NextB lists efficiently. For square (x,y) where one of the players can be after k moves, we can easily find all squares (x,y) where this player can be after k+1 moves. The problem is to find the position of (x,y) on the LAk+1 and LBk+1 lists. But since each square is present on at most two such lists, when we add some square to some list, we can also store its position on an appropriate list.

Since each value Tk,i,j can be computed in constant time, the total time complexity is O(n3). Please note that although there are O(n3) values Tk,i,j, we only have to store Tk,i,j for two consecutive values of k. Moreover, since each square belongs to at most two lists LA/LB, these lists occupy O(n2) memory. Therefore, the overall memory complexity is O(n2).


Comments

There are no comments at the moment.