5127.Timofey and a tree

传统题 时间 2000 ms 内存 256 MiB 尝试 0 已通过 0 标签

Timofey and a tree

CF763A · Timofey and a tree

  • 难度:1600
  • 标签:dfs and similar、dp、dsu、graphs、implementation、trees
  • 链接:https://codeforces.com/problemset/problem/763/A
  • 时间限制:2 seconds 内存限制:256 megabytes
  • 出现位置:Day09-树上DFS-DFS序-树形递归

中文题意

以下为官方英文题意(课堂讲解时请要求学生能用自己的话复述条件与目标)。

Each New Year Timofey and his friends cut down a tree of n vertices and bring it home. After that they paint all the n its vertices, so that the i-th vertex gets color ci. Now it's time for Timofey birthday, and his mother asked him to remove the tree. Timofey removes the tree in the following way: he takes some vertex in hands, while all the other vertices move down so that the tree becomes rooted at the chosen vertex. After that Timofey brings the tree to a trash can. Timofey doesn't like it when many colors are mixing together. A subtree annoys him if there are vertices of different color in it. Timofey wants to find a vertex which he should take in hands so that there are no subtrees that annoy him. He doesn't consider the whole tree as a subtree since he can't see the color of the root vertex. A subtree of some vertex is a subgraph containing that vertex and all its descendants. Your task is to determine if there is a vertex, taking which in hands Timofey wouldn't be annoyed.

输入格式(中文)

The first line contains single integer n (2 ≤ n ≤ 105) — the number of vertices in the tree. Each of the next n - 1 lines contains two integers u and v (1 ≤ u, v ≤ n, u ≠ v), denoting there is an edge between vertices u and v. It is guaranteed that the given graph is a tree. The next line contains n integers c1, c2, ..., cn (1 ≤ ci ≤ 105), denoting the colors of the vertices.

输出格式(中文)

Print "NO" in a single line, if Timofey can't take the tree in such a way that it doesn't annoy him. Otherwise print "YES" in the first line. In the second line print the index of the vertex which Timofey should take in hands. If there are multiple answers, print any of them.

样例

样例 1

输入:

4
1 2
2 3
3 4
1 2 1 1

输出:

YES
2

样例 2

输入:

3
1 2
2 3
1 2 3

输出:

YES
2

样例 3

输入:

4
1 2
2 3
3 4
1 2 1 2

输出:

NO

在线编程 IDE

建议全屏模式获得最佳体验