CodeForces - 764C (树)

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.

Input

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 ≤ nu ≠ 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.

Output

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.

题目大意:给出一个树,和每一个节点的颜色,问能任意选择一个点作为根,从当前点开始遍历它的任何一个子树的颜色都是相同的。

解题思路:刚开始傻傻的dfs,任选一个点为根dfs,超时。。。。

题解是:对于任意一条边,如果u,v的颜色不同的话,u,v都可能是答案,此时我们统计u和v的度数。最后如果某个节点的度数等于颜色不相同的边的数量的话,这个点为根的树即为所求。。。巧妙啊。。。

#include<bits/stdc++.h>
using namespace std;
#define LL long long
#define sca(x) scanf("%d",&x)
#define rep(i,j,k) for(int i=j;i<=k;i++)
#define pb(x) push_back(x)
#define N 100005
#define inf 0x3f3f3f3f
#define mp(x,y) make_pair(x,y)

int a[N],b[N],c[N],cnt[N];
int main()
{
    int n;
    sca(n);
    rep(i,1,n-1)
    {
        int x,y;
        sca(a[i]);
        sca(b[i]);
    }
    rep(i,1,n)sca(c[i]);

    int dif=0;
    rep(i,1,n-1)
    {
        if(c[a[i]]!=c[b[i]])
        {
            dif++;
            cnt[a[i]]++;
            cnt[b[i]]++;
        }
    }

    rep(i,1,n)
    {
        if(cnt[i]==dif)
        {
            puts("YES");
            cout<<i<<endl;
            return 0;
        }
    }
    puts("NO");
}

猜你喜欢

转载自blog.csdn.net/weixin_40894017/article/details/88530104