(简单) 树形dp POJ 1655 Balancing Act

来源:互联网 发布:手机扒谱软件 编辑:程序博客网 时间:2024/05/21 06:45
Balancing Act
Time Limit: 1000MSMemory Limit: 65536KTotal Submissions: 7719Accepted: 3149

Description

Consider a tree T with N (1 <= N <= 20,000) nodes numbered 1...N. Deleting any node from the tree yields a forest: a collection of one or more trees. Define the balance of a node to be the size of the largest tree in the forest T created by deleting that node from T.
For example, consider the tree:
(简单) 树形dp POJ 1655 Balancing Act - 恶魔仁 - 恶魔仁

Deleting node 4 yields two trees whose member nodes are {5} and {1,2,3,6,7}. The larger of these two trees has five nodes, thus the balance of node 4 is five. Deleting node 1 yields a forest of three trees of equal size: {2,6}, {3,7}, and {4,5}. Each of these trees has two nodes, so the balance of node 1 is two.

For each input tree, calculate the node that has the minimum balance. If multiple nodes have equal balance, output the one with the lowest number.

Input

The first line of input contains a single integer t (1 <= t <= 20), the number of test cases. The first line of each test case contains an integer N (1 <= N <= 20,000), the number of congruence. The next N-1 lines each contains two space-separated node numbers that are the endpoints of an edge in the tree. No edge will be listed twice, and all edges will be listed.

Output

For each test case, print a line containing two integers, the number of the node with minimum balance and the balance of that node.

Sample Input

172 61 21 44 53 73 1

Sample Output

1 2

Source

POJ Monthly--2004.05.15 IOI 2003 sample task


跟 POJ2378一样,我就不多说了

代码:
#include<cstdio>
#include<algorithm>
#include<sstream>
#include<set>
#include<iostream>
#include<map>
#include<cmath>
#include<string>
#include<queue>
#include<vector>
using namespace std;
const int maxn = 20000+10;
const int inf = 2000000;
#define LL long long

int sum[maxn];
int max_tree[maxn];
int ptr , n , t;

struct Node
{
int v;
Node *next;
}*first[maxn] , edge[maxn*2];

void init()
{
ptr = 0;
memset(first,0,sizeof(first));
}

void add(int x,int y)
{
edge[++ptr].v = y;
edge[ptr].next = first[x];
first[x] = &edge[ptr];
}

void dfs(int x , int fa)
{
Node *p = first[x];
sum[x] = 1;
max_tree[x] = 0;
while (p)
{
int v = p->v;
if (v!=fa)
{
dfs(v,x);
sum[x] += sum[v];
max_tree[x] = max(max_tree[x],sum[v]);
}
p = p->next;
}
}

int main()
{
cin>>t;
while (t--)
{
scanf("%d",&n);
init();
for (int i = 0 ; i < n-1 ; ++i)
{
int x,y;
scanf("%d%d",&x,&y);
add(x,y);
add(y,x);
}
dfs(1,-1);
int balance = inf;
int ret;
for (int i = 1 ; i <= n ; ++i)
{
int tem = max(max_tree[i],n-sum[i]);
if (tem < balance)
{
balance = tem;
ret = i;
}
}
printf("%d %d\n",ret,balance);
}
}
0 0
原创粉丝点击