日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

POJ 1655 Balancing Act[树的重心/树形dp]

發(fā)布時間:2024/9/21 编程问答 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 POJ 1655 Balancing Act[树的重心/树形dp] 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Balancing Act

時限:1000ms

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:?

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

1 7 2 6 1 2 1 4 4 5 3 7 3 1

Sample Output

1 2

樹的重心也叫樹的質心。找到一個點,其所有的子樹中最大的子樹節(jié)點數最少,那么這個點就是這棵樹的重心,刪去重心后,生成的多棵樹盡可能平衡。
利用樹形dp的思想,對節(jié)點u的子樹進行遍歷。和樹的直徑不同的是,如果子樹的分割確定了,那么子樹之外的節(jié)點必定在一顆樹上,不需要在dfs一次。
#include "stdio.h" #include "algorithm" #include "string.h" using namespace std; const int INF = 0x3f3f3f3f; const int maxn = 20000 + 10; bool vis[maxn]; struct edge {int to, next; } e[maxn*2]; int n, num[maxn]; int size, cur; int tot = 0; int head[maxn]; void add_edge(int u, int v) {e[tot].to = v; e[tot].next = head[u];head[u] = tot++; } void dfs(int u) {num[u] = 0;int tr = 0;vis[u] = true;for (int i = head[u]; i != -1; i = e[i].next) {int v = e[i].to;if (vis[v]) continue;dfs(v);num[u] += num[v] + 1;tr = max(num[v] + 1, tr);} tr = max(n - num[u] - 1, tr); //剩下那棵樹的大小if (tr < size || tr == size && cur > u) { //答案還要編號節(jié)點最小size = tr; cur = u;} } void init() {memset(vis, false, sizeof(vis));memset(head, -1, sizeof(head));tot = 0; size = INF; } int main(int argc, char const *argv[]) {int T;scanf("%d", &T);while (T--) {init();scanf("%d", &n);for (int i = 0; i < n-1; i++) {int u, v;scanf("%d%d", &u, &v); add_edge(u, v);add_edge(v, u);}dfs(1);printf("%d %d\n", cur, size);}return 0; }

?

?

轉載于:https://www.cnblogs.com/cniwoq/p/7247542.html

總結

以上是生活随笔為你收集整理的POJ 1655 Balancing Act[树的重心/树形dp]的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。