Balancing Act 树的重心模板题

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:
在这里插入图片描述

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.

#include <iostream>
#include <cstdio>
#include <cstring>
using namespace std;

const int N = 202020;

int Next[N], head[N], ver[N], v[N], size[N];
int tot, pos, ans, n;

void init(){
	memset(Next, 0, sizeof(Next));
	memset(head, 0, sizeof(head));
	memset(v, 0, sizeof(v));
	memset(size, 0, sizeof(size));
	tot = 1;
	ans = 0x7fffffff;
}
void add(int x, int y){
	ver[++tot] = y, Next[tot] = head[x], head[x] = tot;
}

void dfs(int x){
	v[x] = 1; size[x] = 1;
	int max_part = 0;
	for (int i = head[x]; i; i = Next[i]){
		int y = ver[i];
		if(v[y]) continue;
		dfs(y);
		size[x] += size[y];
		max_part = max(max_part, size[y]);
	}
	max_part = max(max_part, n - size[x]);
	if(max_part < ans){
		ans = max_part;
		pos = x;
	}
}
int main(){
	int t;
	init();
	scanf("%d", &t);
	while(t--){
		init();
		scanf("%d", &n);
		for(int i = 1; i < n; i++){
			int a, b;
			scanf("%d%d", &a, &b);
			add(a, b);
			add(b, a);
		}
		dfs(1);
		printf("%d %d\n", pos, ans);
	}
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值