Triangle War is a two-player game played on the following triangular grid:
Two players, A and B, take turns lling in any dotted line connecting two dots, with A starting rst.
Once a line is lled, it cannot be lled again. If the line lled by a player completes one or more triangles, she owns the completed triangles and she is awarded another turn (i.e. the opponent skips a turn). The game ends after all dotted lines are lled in, and the player with the most triangles wins the game. The dierence in the number of triangles owned by the two players is not important.
For example, if A lls in the line between 2 and 5 in the partial game on the left below:
Then, she owns the triangle labelled A and takes another turn to ll in the line between 3 and 5. B can now own 3 triangles (if he wishes) by lling in the line between 2 and 3, then the one between 5 and 6, and nally the one between 6 and 9. B would then make one more move before it is A's turn again.
In this problem, you are given a number of moves that have already been made. From the partial game, you should determine which player will win assuming that each player plays a perfect game from that point on. That is, assume that each player always chooses the play that leads to the best possible outcome for himself/herself.