麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 學院 > 開發(fā)設計 > 正文

Codeforces Round #395 (Div. 2) C. Timofey and a tree

2019-11-14 12:17:18
字體:
供稿:網(wǎng)友

C. Timofey and a tree

time limit per test:2 seconds

memory limit per test:256 megabytes

input:standard input

output:standard output

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?≤?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.

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 題意:給你一個n個節(jié)點n-1條邊的樹。每個節(jié)點有顏色ci。問是否存在一個點,將它看為根后,所有子樹的顏色相同(子樹和子樹之間可以不同) 題解:我們將顏色相同的并相連的點進行縮點。最后就會形成這里寫圖片描述類似這樣的圖,如果有解的話就像圖上紅色圈內(nèi)樣,與其他都相連(則它的度為染色數(shù)-1.) 代碼:

#include <bits/stdc++.h>#define ll long longusing namespace std;const int N=1e6;int n,cor,u,v;vector<int>edge[N];struct node{int f,l;}p[N];int color[N];int vis[N];int dp[N];int next_color[N];void dfs(int po,int fa){ vis[po]=1; next_color[po]=cor; for(int i=0;i<edge[po].size();i++) { int v=edge[po][i]; if(v!=fa&&color[v]==color[po]) { dfs(v,po); } }}int main(){ cin>>n; cor=0; for(int i=1;i<n;i++) { cin>>u>>v; edge[u].push_back(v); edge[v].push_back(u); p[i].f=u; p[i].l=v; } for(int i=1;i<=n;i++) cin>>color[i]; for(int i=1;i<=n;i++) { if(!vis[i]) { cor++; dfs(i,-1); } } for(int i=1;i<n;i++) { u=p[i].f; v=p[i].l; if(next_color[u]!=next_color[v]) { dp[u]++; dp[v]++; } } for(int i=1;i<=n;i++) { if(dp[i]==cor-1) { cout<<"YES"<<endl; cout<<i<<endl; return 0; } } cout<<"NO"<<endl; return 0;}
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: xnxx 日本免费 | 黄色成人在线播放 | 91成人久久 | 成人在线视频精品 | 亚洲国产成人久久成人52 | 激情亚洲网| 播色网 | 亚洲国产精品久久久久久久久 | 国产精品久久久久久久模特 | 大号bbwassbigav头交 | 欧产日产国产精品99 | 高清中文字幕在线 | 成人毛片免费视频 | 欧美伦交 | 国产一级aa大片毛片 | 中文字幕免费在线观看视频 | 91精品国产日韩91久久久久久360 | 欧美成人一区二区三区 | 人人做人人看 | 久久久久久久久久久久久久久伊免 | 久草亚洲视频 | 一级毛片在线观看视频 | 欧美videofree性欧美另类 | 国产精品久久77777 | 污视频在线免费播放 | 91九色视频在线播放 | 龙的两根好大拔不出去h | 91精品国产综合久久久动漫日韩 | 亚洲国产美女视频 | 国产日本在线播放 | 久久久久久免费 | 91婷婷射| 日本中文一级片 | 欧美在线观看黄色 | 欧美黑人xx | 在线观看91精品 | 中文字幕精品久久 | 91快色| 国产精品自拍99 | 国产99视频在线观看 | 精品国产一区二区三区久久久狼牙 |