Codeforces Round #395 (Div. 2) C. Timofey and a tree(树的基础应用)

本文探讨了一种特殊问题,即在一个树形结构中找到合适的根节点,使得该节点的每个子树内颜色相同,以此避免颜色混合导致的问题。文章详细介绍了输入格式、输出格式,并通过示例进行了说明。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Timofey and a tree

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.

Examples
input
4
1 2
2 3
3 4
1 2 1 1
output
YES
2
input
3
1 2
2 3
1 2 3
output
YES
2
input
4
1 2
2 3
3 4
1 2 1 2
output
NO
ps:比赛的时候搞了半天到最后题意都没有理解,也是醉了0.0敲打
题意:寻找是否存在这样一个根节点,要求这个根节点的每一个儿子所在的子树里都必须只有一种颜色
思路:要想这个点的所有子树都是一种颜色,即要使这个点所连的边包括所有的端点颜色不同的边。
代码:
#include<stdio.h>
#define maxn 100000+10
int v[maxn],u[maxn],cnt[maxn],c[maxn];
int main()
{
    int n,i,sum=0;
    scanf("%d",&n);
    for(i=1; i<n; i++)
        scanf("%d%d",&u[i],&v[i]);
    for(i=1; i<=n; i++)
        scanf("%d",&c[i]);
    for(i=1; i<n; i++)
        if(c[u[i]]!=c[v[i]])
            sum++,cnt[u[i]]++,cnt[v[i]]++;//sum记录端点颜色不同的边的个数,cnt[i]记录i点所连的端点颜色不同的边的个数
    for(i=1; i<=n; i++)
    {
        if(cnt[i]==sum)
        {
            printf("YES\n%d\n",i);
            return 0;
        }
    }
    printf("NO\n");
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值