题目连接:http://codeforces.com/contest/734/problem/E

E. Anton and Tree
time limit per test

3 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

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.

题目大意:有一棵树,有黑白两种颜色,每个节点为黑色或白色,每次变换使得相连的同色节点全部变成另一种颜色,求使树变成单色(纯黑或纯白)所需的最少操作数。

解题思路:

刚开始忽略了改变颜色后连同块的大小会改变,用并查集做了,结果当然WA,后来想到会改变,所以用dfs。

第一次dfs缩点,把连通块缩为一点,构成一个新图,方便处理。

缩点完成后的图就变成了黑白交替出现的一棵树,改变一个节点就相当于把它和与他直接相连的所有节点缩为一点,最后的结果为该树的最长路径/2。

写一下自己想的弱鸡证明过程;

1.首先证明,操作次数只与最长路径有关。

假设有一棵树(称之为完全树),在它的最长路径上的所有节点都连有在保证该路径是最长路径的前提下可连的最多节点,显然,此种情况下操作次数不会大于只有最长路的操作次数,因为必须保证最长链完成修改。另外显然,经过缩点得到的所有可能的树的操作次数小于等于完全树,所以可得,操作次数只与最长路径有关。

2.证明结果为最长路径的1/2。

只考虑其最长路径,假设最长路径节点数n为奇数,则相当于每次操作减少两节点,直至最后剩下一个节点,设操作数为x,则有:n-2x=1,解得x=(n-1)/2;

假设n为偶数,则最后一次操作相当于只消除一个节点,则有n-2(x-1)-1=1,解得 =n/2

综合可得,x=n/2(整数除法)

代码如下:

#include<bits/stdc++.h>

using namespace std;

vector <],g[];
];
]={};
,maxp;

void dfs1(int n,int s)
{
    if(n>N||vis[n])
        return;
    vis[n]=;
    if(c[n]!=c[s])
    {
        g[n].push_back(s);
        g[s].push_back(n);
        s=n;
    }
    ;i<G[n].size();i++)
    {
        dfs1(G[n][i],s);
    }
}

void dfs2(int n,int dis)
{
    if(vis[n])
        return;
    vis[n]=;
    if(dis>maxx)
    {
        maxx=dis;
        maxp=n;
    }
    ;i<g[n].size();i++)
        dfs2(g[n][i],dis+);
}

int main()
{
    int x,y;
    cin>>N;
    ;i<=N;i++)
        scanf("%d",&c[i]);
    ;i<N;i++)
    {
        scanf("%d%d",&x,&y);
        G[x].push_back(y);
        G[y].push_back(x);
    }
    dfs1(,);
    memset(vis,,sizeof(vis));
    dfs2(,);
    memset(vis,,sizeof(vis));
    dfs2(maxp,);
    cout<<maxx/<<endl;
}

codeforces734E的更多相关文章

  1. CodeForces-734E Anton and Tree 树的直径

    题目大意: 给定一棵有n个节点的树,有黑点白点两种节点. 每一次操作可以选择一个同种颜色的联通块将其染成同一种颜色 现在给定一个初始局面问最少多少步可以让树变为纯色. 题解: 首先我们拿到这棵树时先将 ...

随机推荐

  1. Str 函数

    Str 函数 Visual Studio 2005 返回数字的 String 表示形式.     Public Shared Function Str(ByVal Number As Object) ...

  2. 【ZJ选讲·压缩】

    给一个由小写字母组成的字符串(len<=50) 我们可以用一种简单的方法来压缩其中的重复信息. 用M,R两个大写字母表示压缩信息 M标记重复串的开始, R表示后面的一段字符串重复从上一个 ...

  3. jQuery.getJSON跨域访问的正确使用方式(史上最傻瓜式解释)

    最近花了2天时间完整的看了一遍 jQuery 的API,其中 $.getJSON(url[, data][, callback]) 方法的跨域访问解释真心看的一头雾水,大家可以从这里感受一下: htt ...

  4. CSS样式权重的级联cascade的概念

    我们知道,firefox在众多浏览器中是对css 2高度兼容的一款浏览器,那是我能够编写一个中型b2b网站的时候(并不能说是我遇到过的难题)在禅意花园中看到的一个案例,说的是某个菜单在css中定义了以 ...

  5. BS架构下使用消息队列的工作流程

    异步通信 对于BS(Browser-Server 浏览器)架构,很多情景下server的处理时间较长. 如果浏览器发送请求后,保持跟server的连接,等待server响应,那么一方面会对用户的体验有 ...

  6. Codis+redis 集群测试

    Codis 是一个分布式 Redis 解决方案, 对于上层的应用来说, 连接到 Codis Proxy 和连接原生的 Redis Server 没有显著区别 (不支持的命令列表), 上层应用可以像使用 ...

  7. js删除一个父元素下面的所有子元素

    比如<div id="ok"><button tpye='button'>111111</button><p>22222</p ...

  8. 【BZOJ2742】【HEOI2012】Akai的数学作业 [数论]

    Akai的数学作业 Time Limit: 10 Sec  Memory Limit: 128 MB[Submit][Status][Discuss] Description 这里是广袤无垠的宇宙这里 ...

  9. [bzoj2002][Hnoi2010]Bounce弹飞绵羊——分块

    Brief description 某天,Lostmonkey发明了一种超级弹力装置,为了在他的绵羊朋友面前显摆,他邀请小绵羊一起玩个游戏.游戏一开始,Lostmonkey在地上沿着一条直线摆上n个装 ...

  10. 平衡树之splay讲解

    首先来说是splay是二叉搜索树,它可以说是线段树和SBT的综合,更可以解决一些二者解决不了的问题,splay几乎所有的操作都是由splay这一操作完成的,在介绍这一操作前我们先介绍几个概念和定义 二 ...