码迷,mamicode.com
首页 > 其他好文 > 详细

CF 763A Timofey and a tree(思维题)

时间:2018-01-13 15:35:34      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:als   不同   contains   思维   col   wan   section   target   int   

题目链接:http://codeforces.com/problemset/problem/763/A

题目:

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
题意:给定一棵每个顶点都标记颜色的树,问能否从一个顶点出发,使得它的子树都是一样颜色(不包括这个顶点本身的颜色)。
题解:因条件要求,我们可以知道不同的颜色的顶点中其中一个必须是答案顶点,我们统计一下不同颜色顶点个数(设为m),和不同颜色顶点中顶点出现次数。最后如果有一个顶点出现次数等于m,那么这个顶点就是答案顶点。
 1 #include <bits/stdc++.h>
 2 using namespace std;
 3 
 4 #define PI acos(-1.0)
 5 #define INF 0x3f3f3f3f
 6 #define FAST_IO ios::sync_with_stdio(false)
 7 #define CLR(arr,val) memset(arr,val,sizeof(arr))
 8 
 9 const int N=1e5+1234;
10 typedef long long LL;
11 struct node{
12     int u,v;
13 }T[N];
14 int col[N],cnt[N];
15 
16 int main(){
17     int n,m=0;
18     cin>>n;
19     for(int i=1;i<n;i++) cin>>T[i].u>>T[i].v;
20     for(int i=1;i<=n;i++) cin>>col[i];
21     for(int i=1;i<n;i++){
22         if(col[T[i].u]!=col[T[i].v]){
23             cnt[T[i].u]++;cnt[T[i].v]++;
24             m++;
25         }
26     }
27     for(int i=1;i<=n;i++){
28         if(cnt[i]==m){
29             cout<<"YES"<<endl;
30             cout<<i<<endl;
31             return 0;
32         }
33     }
34     cout<<"NO"<<endl;
35     return 0;
36 }

 

CF 763A Timofey and a tree(思维题)

标签:als   不同   contains   思维   col   wan   section   target   int   

原文地址:https://www.cnblogs.com/Leonard-/p/8278946.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!