zoukankan      html  css  js  c++  java
  • More is better--hdu1856(并查集)

    More is better

    Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 327680/102400 K (Java/Others)
    Total Submission(s): 18707    Accepted Submission(s): 6873

    Problem Description
    Mr Wang wants some boys to help him with a project. Because the project is rather complex, the more boys come, the better it will be. Of course there are certain requirements.

    Mr Wang selected a room big enough to hold the boys. The boy who are not been chosen has to leave the room immediately. There are 10000000 boys in the room numbered from 1 to 10000000 at the very beginning. After Mr Wang's selection any two of them who are still in this room should be friends (direct or indirect), or there is only one boy left. Given all the direct friend-pairs, you should decide the best way.
     


    Input
    The first line of the input contains an integer n (0 ≤ n ≤ 100 000) - the number of direct friend-pairs. The following n lines each contains a pair of numbers A and B separated by a single space that suggests A and B are direct friends. (A ≠ B, 1 ≤ A, B ≤ 10000000)
     


    Output
    The output in one line contains exactly one integer equals to the maximum number of boys Mr Wang may keep.
     


    Sample Input
    4
    1 2
    3 4
    5 6
    1 6
    4
    1 2
    3 4
    5 6
    7 8
     


    Sample Output
    4
    2
    Hint
    A and B are friends(direct or indirect), B and C are friends(direct or indirect), then A and C are also friends(indirect). In the first sample {1,2,5,6} is the result. In the second sample {1,2},{3,4},{5,6},{7,8} are four kinds of answers.
     
     
    这个题的意思就是输入是好友的两人,两好友的盆友具有传递性!最后输出互相是好友最多的一群有多少人?
     
     
    用并查集,具体来看注释部分!
     
     
     1 #include <iostream>
     2 #include<stdio.h>
     3 #include<string.h>
     4 #include<algorithm>
     5 #define maxn 100000
     6 using namespace std;
     7 int ran[maxn],per[maxn],via[maxn],num[maxn],n,sum;
     8 void init()
     9 {
    10     int i;
    11     for(i=1;i<=maxn;i++)
    12     {
    13         per[i]=i;
    14         num[i] = 1;//记录每个根节点所包含的子节点
    15     }
    16 }
    17 int find(int x)//查找函数
    18 {
    19     int t=x;
    20     while(t!=per[t])
    21      t=per[t];
    22      int i=x,j;
    23      while(i!=t)
    24      {
    25          j=per[i];
    26          per[i]=t;
    27          i=j;//压缩路径
    28      }
    29      return t;
    30 }
    31 void join(int x,int y)//合并函数,合并图
    32 {
    33     int fx=find(x);
    34     int fy=find(y);
    35     if(fx!=fy)
    36     {
    37         per[fx] = fy;
    38         num[fy] += num[fx];
    39         sum = max(sum, num[fy]);//求出各个树中子节点最多的
    40     }
    41     else
    42         return ;
    43 }
    44 int main ()
    45 {
    46     int a,b,i,w,n;
    47     while(scanf("%d",&n)!=EOF)
    48     {
    49         if(n == 0){
    50             printf("1
    ");//特殊坑爹数据
    51             continue;
    52         }
    53         init();
    54         w=n;
    55         sum = 0;
    56         while(w--)
    57         {
    58             scanf("%d%d",&a,&b);
    59             via[a]=1;
    60             via[b]=1;
    61             join(a,b);
    62         }
    63     printf("%d
    ", sum);
    64     }
    65     return 0;
    66 }
     
     
     
     
     
     
     
  • 相关阅读:
    mysql主从与mycat与MHA
    mycat+mysql集群:实现读写分离,分库分表
    centos7下扩展根分区(图文详解)
    MySQL高可用之MHA的搭建
    zabbix_agentd客户端安装与配置(windows操作系统)
    centos7手把手教你搭建zabbix监控
    有关添加System.Web的问题
    锚标签<a>
    MVC3出现“提供程序未返回 ProviderManifestToken 字符串”的解决办法
    解决.net后台调用js弹窗后,前台界面样式乱掉问题
  • 原文地址:https://www.cnblogs.com/Eric-keke/p/4687283.html
Copyright © 2011-2022 走看看