zoukankan      html  css  js  c++  java
  • POJ 3107.Godfather 树形dp

    Godfather
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 7536   Accepted: 2659

    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 aibi 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

    Source

    Northeastern Europe 2005, Northern Subregion
     
    题意:输出一棵树的所有重心
    思路:树形dp。STL超时,用前向星存图。
    代码:
    #include<iostream>
    #include<cstdio>
    #include<cmath>
    #include<cstring>
    #include<queue>
    #include<stack>
    #include<map>
    #include<vector>
    #include<set>
    #include<bitset>
    using namespace std;
    #define PI acos(-1.0)
    #define eps 1e-8
    typedef long long ll;
    typedef pair<int,int> P;
    const int N=1e5+100,M=1e5+100;
    const int inf=0x3f3f3f3f;
    const ll INF=1e18+7,mod=1e9+7;
    int n;
    vector<int>G[N];
    int ans;
    int si[N],maxx[N];
    struct edge
    {
        int from,to;
        int next;
    };
    edge es[M];
    int cnt,head[N];
    void init()
    {
        cnt=0;
        memset(head,-1,sizeof(head));
    }
    void addedge(int u,int v)
    {
        cnt++;
        es[cnt].from=u,es[cnt].to=v;
        es[cnt].next=head[u];
        head[u]=cnt;
    }
    int dfs(int u,int fa)
    {
        for(int i=head[u]; i!=-1; i=es[i].next)
        {
            int v=es[i].to;
            if(v==fa) continue;
            si[u]+=dfs(v,u);
            maxx[u]=max(maxx[u],si[v]);
        }
        si[u]++;
        maxx[u]=max(maxx[u],n-si[u]);
        ans=min(ans,maxx[u]);
        return si[u];
    }
    int main()
    {
        while(scanf("%d",&n)!=EOF)
        {
            init();
            for(int i=1; i<n; i++)
            {
                int u,v;
                scanf("%d%d",&u,&v);
                addedge(u,v);
                addedge(v,u);
            }
            memset(si,0,sizeof(si));
            memset(maxx,0,sizeof(maxx));
            ans=inf;
            dfs(1,0);
            int cou=0;
            for(int i=1; i<=n; i++)
            {
                if(maxx[i]==ans&&!cou) printf("%d",i),cou++;
                else if(maxx[i]==ans) printf(" %d",i),cou++;
            }
            printf("
    ");
            for(int i=0; i<=n+10; i++) G[i].clear();
        }
        return 0;
    }
    前向星存图 树形dp
  • 相关阅读:
    【转】Asp.net页面的生命周期
    指定.net的httprequest http协议版本为1.0
    查看oracle中被锁的对象(表...)
    网友整理的Flex开源项目
    oracle中用profile限定用户资源
    (转)让你受益终身的10个Word实用技巧
    磁盘阵列卡
    Nmap扫描器的使用
    最简单的数据库连接,asp连接access数据库
    网络经典命令行
  • 原文地址:https://www.cnblogs.com/GeekZRF/p/7563011.html
Copyright © 2011-2022 走看看