Codeforces Round 960 (Div. 2) |
---|
Finished |
Alice and Bob are playing a game in an array $$$a$$$ of size $$$n$$$.
They take turns to do operations, with Alice starting first. The player who can not operate will lose. At first, a variable $$$mx$$$ is set to $$$0$$$.
In one operation, a player can do:
Determine whether Alice has a winning strategy.
The first line contains an integer $$$t$$$ ($$$1 \leq t \leq 10^3$$$) — the number of test cases.
For each test case:
For each test case, if Alice has a winning strategy, output "YES". Otherwise, output "NO".
You can output the answer in any case (upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive responses.
522 121 133 3 343 3 4 441 2 2 2
YES NO YES NO YES
In the first test case, Alice can choose $$$i=1$$$ since $$$a_1=2 \ge mx=0$$$.
After Alice's operation, $$$a=[0,1]$$$ and $$$mx=2$$$. Bob can not do any operation. Alice wins.
In the second test case, Alice doesn't have a winning strategy.
For example, if Alice chooses $$$i=1$$$, after Alice's operation: $$$a=[0,1]$$$ and $$$mx=1$$$. Then, Bob can choose $$$i=2$$$ since $$$a_2=1 \ge mx=1$$$. After Bob's operation: $$$a=[0,0]$$$ and $$$mx=1$$$. Alice can not do any operation. Bob wins.
Name |
---|