国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學(xué)院 > 開發(fā)設(shè)計(jì) > 正文

Codeforces Round #395 (Div. 2) C. Timofey and a tree (樹的基礎(chǔ)應(yīng)用)

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

C. Timofey and a treetime limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard 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?≤?nu?≠?v), denoting there is an edge between vertices uand 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.

Examplesinput
41 22 33 41 2 1 1output
YES2input
31 22 31 2 3output
YES2input
41 22 33 41 2 1 2output
NO題意: 一棵樹中各個(gè)節(jié)點(diǎn)被染上了c[i]顏色; 讓你在一棵樹中隨便選一個(gè)節(jié)點(diǎn)作為根節(jié)點(diǎn),然后把整棵樹抬起來; 問你是否存在一個(gè)根節(jié)點(diǎn),這個(gè)根節(jié)點(diǎn)的直系兒子節(jié)點(diǎn)的子樹里面的所有節(jié)點(diǎn)的顏色都一樣; 

思路:

要理解樹的構(gòu)造以及特點(diǎn),每棵樹的子樹是不相連的,就是幾個(gè)分塊了,所以這個(gè)點(diǎn)要想使所有子樹都是一種顏色,其實(shí)就是這個(gè)點(diǎn)所連邊包括所有端點(diǎn)不同色的邊,因?yàn)檫€有端點(diǎn)不同色的邊沒有與根節(jié)點(diǎn)相連,那么肯定某一顆子樹含有這個(gè)邊,也就是這顆子樹并沒有同色,因?yàn)樽訕渲g沒有邊相連,所以只能在某一科子樹里。所以做法就是記錄所有不同色的邊的個(gè)數(shù),記錄每個(gè)點(diǎn)連接的不同色的邊的個(gè)數(shù),如果某個(gè)兩者相等說明這個(gè)點(diǎn)連著所有不同色的邊,也就是符合題意了

#include <iostream>#include <cstdio>#include <algorithm>using namespace std;const int maxn = 2e5 + 5;int u[maxn], v[maxn], cnt[maxn], c[maxn], sum = 0;int main(){    int n;    cin >> n;    for(int i = 1; i < n; i++)        cin >> u[i] >> v[i];    for(int i = 1; i <= n; i++)        cin >> c[i];    for(int i = 1; i < n; i++)    {        if(c[u[i]] != c[v[i]])            sum++, cnt[u[i]]++, cnt[v[i]]++;    }    for(int i = 1; i <= n; i++)    {        if(cnt[i] == sum)        {            cout << "YES/n" << i << endl;            return 0;        }    }    cout << "NO" << endl;    return 0;}


發(fā)表評論 共有條評論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 永州市| 双柏县| 贵南县| 英吉沙县| 台东县| 同仁县| 仙居县| 哈尔滨市| 方城县| 夏邑县| 全椒县| 塔河县| 宁波市| 中阳县| 贵溪市| 南陵县| 凤山市| 项城市| 逊克县| 册亨县| 永善县| 婺源县| 黎平县| 奎屯市| 南丰县| 特克斯县| 静乐县| 济南市| 漳平市| 静安区| 修文县| 大埔县| 栾城县| 抚松县| 勃利县| 富宁县| 张家口市| 榆林市| 称多县| 中西区| 阿克|