zoukankan      html  css  js  c++  java
  • POJ3107Godfather[树形DP 树的重心]

    Godfather
    Time Limit: 2000MS   Memory Limit: 65536K
    Total Submissions: 6121   Accepted: 2164

    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

    树的重心裸题
    d[i]=sum{d[j]}+1
    除去i后,最大规模max(d[max son of i],n-d[i])
    #include<iostream>
    #include<cstdio>
    #include<algorithm>
    #include<cstring>
    using namespace std;
    const int N=50005;
    int read(){
        char c=getchar();int x=0,f=1;
        while(c<'0'||c>'9'){if(c=='-')f=-1; c=getchar();}
        while(c>='0'&&c<='9'){x=x*10+c-'0'; c=getchar();}
        return x*f;
    }
    struct edge{
        int v,ne;
    }e[N<<1];
    int h[N],cnt=0;
    inline void ins(int u,int v){
        cnt++;
        e[cnt].v=v;e[cnt].ne=h[u];h[u]=cnt;
        cnt++;
        e[cnt].v=u;e[cnt].ne=h[v];h[v]=cnt;
    }
    
    int n,u,v;
    int d[N],ans[N],num=0,mx=1e9;
    void dp(int u,int fa){//printf("dp %d %d
    ",u,fa);
        d[u]=1;
        int tmp=0;
        for(int i=h[u];i;i=e[i].ne){
            int v=e[i].v;
            if(v==fa) continue;
            dp(v,u);
            d[u]+=d[v];
            tmp=max(tmp,d[v]);
        }
        tmp=max(tmp,n-d[u]);
        if(tmp<mx){mx=tmp;num=0;ans[++num]=u;}
        else if(tmp==mx){ans[++num]=u;}
        //printf("%d %d
    ",u,d[u]);
    }
    int main(){
        n=read();
        for(int i=1;i<=n-1;i++){u=read();v=read();ins(u,v);}
        dp(1,0);
        sort(ans+1,ans+1+num);
        for(int i=1;i<=num;i++) printf("%d ",ans[i]);
        //cout<<"num"<<num;
    }
     
  • 相关阅读:
    怎样把.git版本控制文件夹放在项目目录下
    mybatis3-generator-plugin插件地址
    @RestController
    <mvc:annotation-driven />注解意义
    关于Spring中的<context:annotation-config/>配置
    Jeecg-Boot前后端分离,针对敏感数据,加密传递方案
    微信开发SDK支持小程序 ,Jeewx-Api 1.3.1 版本发布
    Mybatis传递多个参数的4种方式(干货)
    Online开发初体验——Jeecg-Boot 在线配置图表
    JAVA开源微信管家平台——JeeWx捷微V3.3版本发布(支持微信公众号,微信企业号,支付窗)
  • 原文地址:https://www.cnblogs.com/candy99/p/5887187.html
Copyright © 2011-2022 走看看