【CodeForces734E】【缩点】Anton and Tree 题解

来源:互联网 发布:深圳阿里云幕布拍照 编辑:程序博客网 时间:2024/05/19 14:01

Anton and Tree

Anton is growing a tree in his garden. In case you forgot, the tree is a connected acyclic undirected graph.

There are n vertices in the tree, each of them is painted black or white. Anton doesn’t like multicolored trees, so he wants to change the tree such that all vertices have the same color (black or white).

To change the colors Anton can use only operations of one type. We denote it as paint(v), where v is some vertex of the tree. This operation changes the color of all vertices u such that all vertices on the shortest path from v to u have the same color (including v and u). For example, consider the tree
这里写图片描述
and apply operation paint(3) to get the following:
这里写图片描述
Anton is interested in the minimum number of operation he needs to perform in order to make the colors of all vertices equal.

Input
The first line of the input contains a single integer n (1 ≤ n ≤ 200 000) — the number of vertices in the tree.

The second line contains n integers colori (0 ≤ colori ≤ 1) — colors of the vertices. colori = 0 means that the i-th vertex is initially painted white, while colori = 1 means it’s initially painted black.

Then follow n - 1 line, each of them contains a pair of integers ui and vi (1 ≤ ui, vi ≤ n, ui ≠ vi) — indices of vertices connected by the corresponding edge. It’s guaranteed that all pairs (ui, vi) are distinct, i.e. there are no multiple edges.

Output
Print one integer — the minimum number of operations Anton has to apply in order to make all vertices of the tree black or all vertices of the tree white.

Example
Input
11
0 0 0 1 1 0 1 0 0 1 1
1 2
1 3
2 4
2 5
5 6
5 7
3 8
3 9
3 10
9 11
Output
2
Input
4
0 0 0 0
1 2
2 3
3 4
Output
0
Note
In the first sample, the tree is the same as on the picture. If we first apply operation paint(3) and then apply paint(6), the tree will become completely black, so the answer is 2.

In the second sample, the tree is already white, so there is no need to apply any operations and the answer is 0.

将原同图色块缩点,长度的一半即为所求。

附AC代码:

#include <iostream>#include <cstdio>#include <cstring>#include <cstdlib>#include <cmath>#include <vector>#include <queue>#include <stack>#include <map>#include <set>#include <string>#include <iomanip>#include <ctime>#include <climits>#include <cctype>#include <algorithm>#define clr(x) memset(x,0,sizeof(x))#define LL long long#ifdef WIN32#define AUTO "%I64d"#else#define AUTO "%lld"#endifusing namespace std; const int maxn = 200005;int n,u,v;vector<int>e[maxn]; int c[maxn],d[maxn];void dfs(int u, int f) {    for(int i =0;i<e[u].size();i++) {        int v = e[u][i];        if(v == f) continue;        d[v] = d[u]+(c[u]^c[v]);        dfs(v, u);    }}int main() {    scanf("%d",&n);    for(int i = 1; i <= n; i++) scanf("%d",&c[i]);    for(int i = 1; i < n; i++) {        scanf("%d%d",&u,&v);        e[u].push_back(v);        e[v].push_back(u);    }      u = 1; dfs(u, -1);    int maxlen = d[u];    for(int i = 1; i <= n; i++)        if(d[i] > maxlen) maxlen = d[i], u = i;    clr(d); dfs(u, -1);      maxlen = d[u];    for(int i = 1; i <= n; i++)        if(d[i] > maxlen) maxlen = d[i], u = i;    printf("%d\n",(d[u]+1)>>1);    return 0;}
0 0