题库练习 Labeling the Tree with Distances
← 上一题 下一题 →

A15684 | Labeling the Tree with Distances

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

题目描述

You are given an unweighted tree of $n$ vertices numbered from $1$ to $n$ and a list of $n-1$ integers $a_1, a_2, \ldots, a_{n-1}$ . A tree is a connected undirected graph without cycles. You will use each element of the list to label one vertex. No vertex should be labeled twice. You can label the only remaining unlabeled vertex with any integer.

A vertex $x$ is called good if it is possible to do this labeling so that for each vertex $i$ , its label is the distance between $x$ and $i$ . The distance between two vertices $s$ and $t$ on a tree is the minimum number of edges on a path that starts at vertex $s$ and ends at vertex $t$ .

Find all good vertices.

输入格式

The first line contains one integer $n$ ( $2\le n\le 2\cdot 10^5$ ) — the number of vertices in the tree.

The second line contains $n - 1$ integers $a_1,a_2,\ldots,a_{n-1}$ ( $0\le a_i < n$ ) — the given list.

Then, $n−1$ lines follow. Each of them contains two integers $u$ and $v$ ( $1\le u,v\le n$ ) denoting an edge between vertices $u$ and $v$ . It is guaranteed that the edges form a tree.

输出格式

In the first line print the number of good vertices.

In the second line, print the indices of all good vertices in ascending order.

输入输出样例

输入 #1
6
2 1 0 1 2
1 2
2 3
2 4
4 5
4 6
输出 #1
2
2 4
输入 #2
5
1 2 1 2
1 2
3 2
3 4
5 4
输出 #2
1
3
输入 #3
3
2 2
1 2
2 3
输出 #3
0
C++ 编辑器
输入
输出