zoukankan      html  css  js  c++  java
  • 763A

    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
    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
     
     1 #include<cstdio>
     2 #include<iostream>
     3 #include<algorithm>
     4 #include<cstring>
     5 #include<cmath>
     6 #include<queue>
     7 #define pi acos(-1.0)
     8 #include<vector>
     9 typedef  long long  ll;
    10 const int N=1e5+5;
    11 using namespace std;
    12 int c[N],f[N];
    13 struct Node {
    14     int v1, v2;
    15     Node(int x = -1, int y = -1){//这是一个函数,v1,v2初始化为x,y
    16         v1=x;
    17         v2=y;
    18     }
    19 };
    20 vector<Node> e;
    21 int main()
    22 {
    23     int n;
    24     int s,t,cnt=0;
    25     scanf("%d",&n);
    26     memset(f,0,sizeof(f));
    27     for(int i=0;i<n-1;i++){
    28         scanf("%d%d",&s,&t);
    29         e.push_back(Node(s-1,t-1));//存入边
    30     }
    31     for(int i=0;i<n;i++){
    32         scanf("%d",&c[i]);//i个点的颜色
    33     }
    34     for(int i=0;i<n-1;i++){
    35         Node& u=e[i];
    36         if(c[u.v1]!=c[u.v2]){
    37             cnt++;
    38             f[u.v1]++;
    39             f[u.v2]++;
    40         }
    41     }
    42     for(int i=0;i<n;i++){
    43         if(f[i]==cnt){
    44             printf("YES
    ");
    45             printf("%d
    ",i+1);
    46             return 0;
    47         }
    48     }
    49     printf("NO
    ");
    50     return 0;
    51 }
  • 相关阅读:
    iOS开发其他相关
    pch文件的创建与配置
    UI界面相关
    多人开发情况下的字符串本地化
    软件系统、硬件相关
    内存管理、单例
    Info.plist文件配置及注意事项
    UI控件相关宏定义
    字体
    3分钟实现iOS语言本地化/国际化(图文详解)
  • 原文地址:https://www.cnblogs.com/mj-liylho/p/6376203.html
Copyright © 2011-2022 走看看