zoukankan      html  css  js  c++  java
  • poj3107 Godfather(树的重心)

    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

    分析:
    模板
    注意最后的答案要从小到大输出
    注意初始化

    这里写代码片
    #include<cstdio>
    #include<cstring>
    #include<iostream>
    #include<algorithm>
    
    using namespace std;
    
    const int INF=0x33333333;
    const int N=50010;
    int n;
    struct node{
        int x,y,nxt;
    };
    node way[N<<1];
    int st[N],tot=0,ans[N],tt=0,size[N],siz;
    bool p[N];
    
    void add(int u,int w)
    {
        tot++;
        way[tot].x=u;way[tot].y=w;way[tot].nxt=st[u];st[u]=tot;
        tot++;
        way[tot].x=w;way[tot].y=u;way[tot].nxt=st[w];st[w]=tot;
    }
    
    void dfs(int now,int fa)
    {
        int maxx=0;
        size[now]=1;
        for (int i=st[now];i;i=way[i].nxt)
        {
            int y=way[i].y;
            if (y!=fa&&p[y])
            {
                p[y]=0;
                dfs(y,now);
                size[now]+=size[y];
                maxx=max(maxx,size[y]);
            }
        }
        maxx=max(maxx,n-size[now]);
        if (maxx<siz)
        {
            siz=maxx;
            ans[tt=1]=now;
        }
        else if (maxx==siz) ans[++tt]=now;
    }
    
    int main()
    {
        scanf("%d",&n);
        for (int i=1;i<n;i++)
        {
            int u,w;
            scanf("%d%d",&u,&w);
            add(u,w);
        }
        siz=INF;
        memset(p,1,sizeof(p));
        p[1]=0;
        dfs(1,0);
        sort(ans+1,ans+1+tt);
        for (int i=1;i<=tt;i++) printf("%d ",ans[i]);
        return 0;
    }
  • 相关阅读:
    Android安全——加固原理
    Android安全–Dex文件格式详解
    我的第二个开源库SuperTextView——中文文档
    【解决方案】: hyper-v 导入虚拟机报这个错误 32784
    【经验】谈谈怎么找自己想要的资源吧~
    有吧友需要PDF的下载站点,好吧,我这边汇总一下
    lucene、lucene.NET详细使用与优化详解
    轻量级开源内存数据库SQLite性能测试
    SQLite介绍、学习笔记、性能测试
    十个 MongoDB 使用要点
  • 原文地址:https://www.cnblogs.com/wutongtong3117/p/7673143.html
Copyright © 2011-2022 走看看