博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #395 Div1的A题Timofey and a tree
阅读量:5888 次
发布时间:2019-06-19

本文共 3126 字,大约阅读时间需要 10 分钟。

A. 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 ≤ 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
41 22 33 41 2 1 1
output
YES2
input
31 22 31 2 3
output
YES2
input
41 22 33 41 2 1 2
output
NO
题意:
一棵树中各个节点被染上了颜色;

让你在一棵树中随便选一个节点作为根节点,Tim不看这个根节点的颜色,但是这个根节点下的子树们不满足要求的话会惹怒他,问你是否存在一个根节点,这个根节点的直系儿子节点的子树里面的所有节点的颜色都一样; 能输出YES,第二行输出这个根的下标。否则输出NO。

注意不同的子树颜色可以不一样,但子树里面的点颜色要相同。

思路:

搜索,最短路,并查集都可以做吧。。。但是有个思路更简单!

在整张图;那些边的两端端点颜色不一样的边,设为特殊边,用计数器把特殊边的数目记录下来,这样的边肯定是有和根节点连在一起的;
因为如果没有和根节点相连的话,肯定会造成子树里面有两个颜色不一样的

所以就看看哪个节点和m条特殊边都相连,如果有的话肯定就是它作为根节点了,且如果没有这样的点的话肯定无解了

#include 
using namespace std;#define LL long long#define mp make_pair#define pb push_backtypedef pair
pii;typedef pair
pll;const double pi = acos(-1.0);const int MAXN = 1e5+10;int n,m;int h[100010],color[MAXN];pii ee[MAXN];int main(){        scanf("%d",&n);    for(int i = 1; i <= n-1; i++)    {        scanf("%d",ee[i].first);        scanf("%d",ee[i].second);    }    for(int i = 1; i <= n; i++)    {        scanf("%d",color[i]);    }    for(int i = 1; i <= n-1; i++){        int x = ee[i].first,y = ee[i].second;        if (color[x]!=color[y])        {            m++;            h[x]++,h[y]++;        }    }    for(int i = 1; i <= n; i++)        if (h[i]==m)        {            puts("YES");s            return 0;        }    puts("NO");    return 0;}

转载于:https://www.cnblogs.com/zhangmingzhao/p/7256678.html

你可能感兴趣的文章
CentOS图形界面和命令行切换
查看>>
HTML5通信机制与html5地理信息定位(gps)
查看>>
加快ALTER TABLE 操作速度
查看>>
PHP 程序员的技术成长规划
查看>>
python基础教程_学习笔记19:标准库:一些最爱——集合、堆和双端队列
查看>>
js replace,正则截取字符串内容
查看>>
作业2
查看>>
nginx的信号量
查看>>
云im php,网易云IM
查看>>
c语言打开alist文件,C语言 文件的打开与关闭详解及示例代码
查看>>
DEFERRED_SEGMENT_CREATION
查看>>
Ada boost学习
查看>>
开源 java CMS - FreeCMS2.3字典管理
查看>>
block,inline和inline-block概念和区别
查看>>
移动端常见随屏幕滑动顶部固定导航栏背景色透明度变化简单jquery特效
查看>>
python基础---网络编程(socket编程)
查看>>
br-ex绑定的物理接口不能配置ip的原因
查看>>
centos6.x中fstab配置文件出错导致无法启动及忘记root密码解决方法
查看>>
Linux命令汇总
查看>>
C#静态类、静态构造函数,类与结构体的比较
查看>>