CF1585G.Poachers
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Alice and Bob are two poachers who cut trees in a forest.
A forest is a set of zero or more trees. A tree is a connected graph without cycles. A rooted tree has a special vertex called the root. The parent of a node v is the next vertex on the shortest path from v to the root. Children of vertex v are all nodes for which v is the parent. A vertex is a leaf if it has no children.
In this problem we define the depth of vertex as number of vertices on the simple path from this vertex to the root. The rank of a tree is the minimum depth among its leaves.
Initially there is a forest of rooted trees. Alice and Bob play a game on this forest. They play alternating turns with Alice going first. At the beginning of their turn, the player chooses a tree from the forest. Then the player chooses a positive cutting depth, which should not exceed the rank of the chosen tree. Then the player removes all vertices of that tree whose depth is less that or equal to the cutting depth. All other vertices of the tree form a set of rooted trees with root being the vertex with the smallest depth before the cut. All these trees are included in the game forest and the game continues.
A player loses if the forest is empty at the beginning of his move.
You are to determine whether Alice wins the game if both players play optimally.
输入格式
Each test contains multiple test cases. The first line contains the number of test cases t ( 1≤t≤5⋅105 ). Description of the test cases follows.
The first line of each test case contains a single integer n ( 1≤n≤5⋅105 ) — total number of vertices in the initial forest.
The second line contains n integers p1,p2,…,pn ( 0≤pi≤n ) — description of the forest. If pi=0 , then the i -th vertex is the root of a tree, otherwise pi is the parent of the vertex i . It's guaranteed that p defines a correct forest of rooted trees.
It is guaranteed that the sum of n over all test cases does not exceed 5⋅105 .
输出格式
For each test case, print "YES" (without quotes) if Alice wins, otherwise print "NO" (without quotes). You can print each letter in any case (upper or lower).
输入输出样例
输入#1
4 4 0 1 0 3 7 0 1 2 0 4 5 6 4 0 1 1 2 7 0 1 1 2 2 3 3
输出#1
NO YES NO YES
说明/提示
In the first test case Bob has a symmetric strategy, so Alice cannot win.
In the second test case Alice can choose the second tree and cutting depth 1 to get a forest on which she has a symmetric strategy.
In third test case the rank of the only tree is 2 and both possible moves for Alice result in a loss. Bob either can make the forest with a symmetric strategy for himself, or clear the forest.
In the fourth test case all leafs have the same depth, so Alice can clear the forest in one move.