poj 2378(树形dp)

来源:互联网 发布:pack php 编辑:程序博客网 时间:2024/06/05 15:52
Tree Cutting
Time Limit: 1000MS Memory Limit: 65536KTotal Submissions: 4316 Accepted: 2627

Description

After Farmer John realized that Bessie had installed a "tree-shaped" network among his N (1 <= N <= 10,000) barns at an incredible cost, he sued Bessie to mitigate his losses. 

Bessie, feeling vindictive, decided to sabotage Farmer John's network by cutting power to one of the barns (thereby disrupting all the connections involving that barn). When Bessie does this, it breaks the network into smaller pieces, each of which retains full connectivity within itself. In order to be as disruptive as possible, Bessie wants to make sure that each of these pieces connects together no more than half the barns on FJ. 

Please help Bessie determine all of the barns that would be suitable to disconnect.

Input

* Line 1: A single integer, N. The barns are numbered 1..N. 

* Lines 2..N: Each line contains two integers X and Y and represents a connection between barns X and Y.

Output

* Lines 1..?: Each line contains a single integer, the number (from 1..N) of a barn whose removal splits the network into pieces each having at most half the original number of barns. Output the barns in increasing numerical order. If there are no suitable barns, the output should be a single line containing the word "NONE".

Sample Input

101 22 33 44 56 77 88 99 103 8

Sample Output

38

Hint

//树形dp dfs一遍
#include <vector>#include <cstring>#include <iostream>#include <cstdio>using namespace std;const int N=1e4+5;vector<int>G[N];int d[N],f[N],n;void dfs(int u,int p){    int tol=1,ma=0;    for(int i=0;i<G[u].size();i++)    {        int e=G[u][i];        if(e==p)continue;        dfs(e,u);        tol+=d[e];        ma=max(d[e],ma);    }    d[u]=tol;    f[u]=max(n-tol,ma);}int main(){    while(~scanf("%d",&n))    {        memset(d,0,sizeof(d));        memset(f,0,sizeof(f));        for(int i=1;i<=n;i++)            G[i].clear();        for(int i=1;i<n;i++)        {            int u,v;            scanf("%d%d",&u,&v);            G[u].push_back(v);            G[v].push_back(u);        }        dfs(1,-1);        int flag=0;        for(int i=1;i<=n;i++)            if(f[i]<=n/2)                flag=1,printf("%d\n",i);        if(!flag)            puts("NONE");    }    return 0;}


0 0