博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
树的重心
阅读量:5262 次
发布时间:2019-06-14

本文共 1525 字,大约阅读时间需要 5 分钟。

 

先任选一个节点作为根,将无根树转换成有根树,代码实现是DFS。

以图9-13的节点i为例,因为是任意选择一个节点做DFS,有以下几种可能:

1.以节点i为根节点,有三个子树

2.以左下方节点为父节点,访问节点i,有两个子树

3.以右下方节点为父节点,访问节点i,有两个子树

4.以右上方节点为父节点,访问节点i,有两个子树

图9-13是按第4中方式DFS,删除节点i之后的连通块有三个,两个子树,以及“上方子树”,从这三个连通块中选一个节点数最大的。

下面是poj 1655 的代码

#define _CRT_SECURE_NO_WARNINGS#include 
#include
#include
#include
#include
#include
using namespace std;int N; // 1<= N <= 20000const int maxn = 20000;vector
tree[maxn + 5]; // tree[i]表示节点i的相邻节点int d[maxn + 5]; // d[i]表示以i为根的子树的节点个数#define INF 10000000int minNode;int minBalance;void dfs(int node, int parent) // node and its parent{ d[node] = 1; // the node itself int maxSubTree = 0; // subtree that has the most number of nodes for (int i = 0; i < tree[node].size(); i++) { int son = tree[node][i]; if (son != parent) { dfs(son, node); d[node] += d[son]; maxSubTree = max(maxSubTree, d[son]); } } maxSubTree = max(maxSubTree, N - d[node]); // "upside substree with (N - d[node]) nodes" if (maxSubTree < minBalance){ minBalance = maxSubTree; minNode = node; }}int main(){ int t; scanf("%d", &t); while (t--){ scanf("%d", &N); for (int i = 1; i <= N - 1; i++){ tree[i].clear(); } for (int i = 1; i <= N-1; i++){ int u, v; scanf("%d%d", &u, &v); tree[u].push_back(v); tree[v].push_back(u); } minNode = 0; minBalance = INF; dfs(1, 0); // fist node as root printf("%d %d\n", minNode, minBalance); } return 0;}

 

转载于:https://www.cnblogs.com/patrickzhou/p/5867208.html

你可能感兴趣的文章
Sping注解:注解和含义
查看>>
站立会议第四天
查看>>
如何快速掌握一门技术
查看>>
利用AMPScript获取Uber用户数据的访问权限
查看>>
vagrant 同时设置多个同步目录
查看>>
python接口自动化28-requests-html爬虫框架
查看>>
生成随机数的模板
查看>>
hdu 2093
查看>>
Mysql 数据库操作
查看>>
转:linux终端常用快捷键
查看>>
009.栈实现队列
查看>>
A-Softmax的总结及与L-Softmax的对比——SphereFace
查看>>
关于软件盘覆盖住布局
查看>>
Unity3D 控制物体移动、旋转、缩放
查看>>
UVa 11059 最大乘积
查看>>
UVa 12545 比特变换器
查看>>
数组分割问题求两个子数组的和差值的小
查看>>
10个著名的思想实验1
查看>>
composer 报 zlib_decode(): data error
查看>>
linux下WPS的使用
查看>>