题库练习 Poachers
← 上一题 下一题 →

A14629 | Poachers

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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 \leq t \leq 5 \cdot 10^5$ ). Description of the test cases follows.

The first line of each test case contains a single integer $n$ ( $1 \leq n \leq 5 \cdot 10^5$ ) — total number of vertices in the initial forest.

The second line contains $n$ integers $p_1, p_2, \ldots, p_n$ ( $0 \leq p_i \leq n$ ) — description of the forest. If $p_i = 0$ , then the $i$ -th vertex is the root of a tree, otherwise $p_i$ 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 \cdot 10^5$ .

输出格式

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
C++ 编辑器
输入
输出