#P1451F. Nullify The Matrix
Nullify The Matrix
No submission language available for this problem.
Description
Jeel and Ashish play a game on an matrix. The rows are numbered to from top to bottom and the columns are numbered to from left to right. They play turn by turn. Ashish goes first.
Initially, each cell of the matrix contains a non-negative integer. Each turn, a player must perform all of the following actions in order.
- Choose a starting cell with non-zero value.
- Choose a finishing cell such that and .
- Decrease the value of the starting cell by some positive non-zero integer.
- Pick any of the shortest paths between the two cells and either increase, decrease or leave the values of cells on this path unchanged. Note that:
- a shortest path is one that passes through the least number of cells;
- all cells on this path excluding the starting cell, but the finishing cell may be modified;
- the resulting value of each cell must be a non-negative integer;
- the cells are modified independently and not necessarily by the same value.
If the starting and ending cells are the same, then as per the rules, the value of the cell is decreased. No other operations are performed.
The game ends when all the values become zero. The player who is unable to make a move loses. It can be shown that the game will end in a finite number of moves if both players play optimally.
Given the initial matrix, if both players play optimally, can you predict who will win?
The first line contains a single integer () — the number of test cases. The description of each test case is as follows.
The first line of each test case contains two integers and () — the dimensions of the matrix.
The next lines contain space separated integers () — the values of each cell of the matrix.
For each test case, if Ashish wins the game, print "Ashish", otherwise print "Jeel" (without the quotes).
Input
The first line contains a single integer () — the number of test cases. The description of each test case is as follows.
The first line of each test case contains two integers and () — the dimensions of the matrix.
The next lines contain space separated integers () — the values of each cell of the matrix.
Output
For each test case, if Ashish wins the game, print "Ashish", otherwise print "Jeel" (without the quotes).
Samples
Note
In the first test case, the only cell of the matrix is 0. There are no moves Ashish can make. Jeel is the winner.
In the second test case, Ashish can choose and reduce the cell to , leaving . Jeel cannot perform any moves. Ashish wins.