POJ 3107 Godfather(树形DP)

12 篇文章 1 订阅

题意给定一棵无根树,删除树中一个节点,使得剩下各子树的包含的节点数最大值最小,问树中有多少个这样的节点?

思路用一个tot[]数组记录下每个点有多少个子节点那么我们要求的删除根节点u后剩余部分的最大数就是要么是u的子树中的最大值,要么是除去以u为根的树外的剩余结点数dp[u]=max(max(tot[v]),n-cnt[u]);

注意:会卡STL....

#include <cstdio>
#include <queue>
#include <cstring>
#include <iostream>
#include <cstdlib>
#include <algorithm>
#include <vector>
#include <map>
#include <string>
#include <set>
#include <ctime>
#include <cmath>
#include <cctype>
using namespace std;
#define maxn 50010
#define inf 1e9
#define LL long long
int cas=1,T;
//vector<int>e[maxn];
int tot[maxn],f[maxn],minx;
int ans;
int n;
struct Edge
{
	int v,next;
}e[maxn*2];
int head[maxn];
int len=0;
void add(int u,int v)
{
	e[len].v=v;
	e[len].next=head[u];
	head[u]=len++;
}
void dfs(int u,int fa)
{
	tot[u]=1;
	for (int i =head[u];i!=-1;i=e[i].next)
	{
		int v = e[i].v;
		if (v==fa)
			continue;
		dfs(v,u);
		tot[u]+=tot[v];
		ans = max(ans,tot[v]);
	}
	f[u]=max(ans,n-tot[u]);
	minx = min(minx,f[u]);
}
int main()
{
	while (scanf("%d",&n)!=EOF)
	{
		memset(head,-1,sizeof(head));
		len=0;
		for (int i = 1;i<n;i++)
		{
			int u,v;
			scanf("%d%d",&u,&v);
			add(u,v);
			add(v,u);
		}
		minx = inf;
		dfs(1,-1);
        
		bool first = true;
		for (int i = 1;i<=n;i++)
			if (f[i]==minx)
			{
				if (first)
					first=false,printf("%d",i);
				else
					printf(" %d",i);
			}
		printf("\n");
	}
	//freopen("in","r",stdin);
	//scanf("%d",&T);
	//printf("time=%.3lf",(double)clock()/CLOCKS_PER_SEC);
	return 0;
}

Description

Last years Chicago was full of gangster fights and strange murders. The chief of the police got really tired of all these crimes, and decided to arrest the mafia leaders.

Unfortunately, the structure of Chicago mafia is rather complicated. There are n persons known to be related to mafia. The police have traced their activity for some time, and know that some of them are communicating with each other. Based on the data collected, the chief of the police suggests that the mafia hierarchy can be represented as a tree. The head of the mafia, Godfather, is the root of the tree, and if some person is represented by a node in the tree, its direct subordinates are represented by the children of that node. For the purpose of conspiracy the gangsters only communicate with their direct subordinates and their direct master.

Unfortunately, though the police know gangsters’ communications, they do not know who is a master in any pair of communicating persons. Thus they only have an undirected tree of communications, and do not know who Godfather is.

Based on the idea that Godfather wants to have the most possible control over mafia, the chief of the police has made a suggestion that Godfather is such a person that after deleting it from the communications tree the size of the largest remaining connected component is as small as possible. Help the police to find all potential Godfathers and they will arrest them.

Input

The first line of the input file contains n — the number of persons suspected to belong to mafia (2 ≤ n ≤ 50 000). Let them be numbered from 1 ton.

The following n − 1 lines contain two integer numbers each. The pair aibi means that the gangster ai has communicated with the gangster bi. It is guaranteed that the gangsters’ communications form a tree.

Output

Print the numbers of all persons that are suspected to be Godfather. The numbers must be printed in the increasing order, separated by spaces.

Sample Input

6
1 2
2 3
2 5
3 4
3 6

Sample Output

2 3


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值