#P15673. [ICPC 2024 Jakarta R] Grid Game 3-angle
[ICPC 2024 Jakarta R] Grid Game 3-angle
题目描述
Your friends, Anda and Kamu decide to play a game called Grid Game and ask you to become the gamemaster. As the gamemaster, you set up a triangular grid of size . The grid has rows (numbered from to ). Row has cells; the -th cell of row is denoted as .
:::align{center}
:::
Before the game starts, different cells (numbered from to ) are chosen: at cell , you add stones on it. You then give Anda and Kamu an integer and commence the game.
Anda and Kamu will take turns alternately with Anda taking the first turn. A player on their turn will do the following.
- Choose a cell with at least one stone on it.
- Remove at least one but at most stones from the chosen cell.
- For each cell such that and , add zero or more stones but at most stones to cell .
The following illustrations show all the possible cells in which you can add stones for . You choose the cell for the left illustration and the cell for the right illustration.
:::align{center}
:::
A player who is unable to complete their turn (because there are no more stones on the grid) will lose the game, and the opposing player wins. Determine who will win the game if both players play optimally.
输入格式
This problem is a multi-case problem. The first line consists of an integer ( ) that represents the number of test cases.
Each test case starts with a single line consisting of three integers ( ). Then, each of the next lines consists of three integers ( ). The pairs are distinct.
The sum of across all test cases does not exceed .
输出格式
For each case, output a string in a single line representing the player who will win the game if both players play optimally. Output Anda if Anda, the first player, wins. Otherwise, output Kamu.
3
2 2 4
1 1 3
2 1 2
100 2 1
4 1 10
4 4 10
10 5 2
1 1 4
3 1 2
4 2 5
2 2 1
5 3 4
Anda
Kamu
Anda
提示
Explanation for the sample input/output #1
For the first case, during the first turn, Anda will remove all the stones from cell and then add three stones at . The only cell with stones left is now cell with five stones, so Kamu must remove stones from that cell. No matter how many stones are removed by Kamu, Anda can remove all the remaining stones at and win the game.
For the second case, Kamu can always mirror whatever move made by Anda until Anda can no longer complete their turn.