POJ 3107 Godfather[树的重心]
Godfather
时限:2000ms
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 to n.
The following n − 1 lines contain two integer numbers each. The pair ai, bi 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
这道和博客的上一个POJ1655一样,求出树的重心,只是上一个统计节点的编号最小的重心,这个是升序输出所有节点的重心,水一片博客。
#include "stdio.h" #include "algorithm" #include "string.h" using namespace std; const int INF = 0x3f3f3f3f; const int maxn = 50000 + 10; bool vis[maxn]; struct edge { int to, next; } e[maxn*2]; int n, num[maxn]; int size; int tot = 0, cnt; int cur[maxn]; 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) { size = tr; cnt = 0; cur[cnt++] = u; } else if (tr == size) { cur[cnt++] = u; } } void init() { memset(vis, false, sizeof(vis)); memset(head, -1, sizeof(head)); tot = 0; size = INF; cnt = 0; } int main(int argc, char const *argv[]) { while (scanf("%d", &n)!=EOF) { init(); 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); sort(cur, cur + cnt); printf("%d", cur[0]); for (int i = 1; i < cnt; i++) printf(" %d", cur[i]); printf("\n"); } return 0; }
本文作者: zprhhs
本文链接:https://www.cnblogs.com/cniwoq/p/7247813.html
版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· [AI/GPT/综述] AI Agent的设计模式综述