• HDU 1856 More is better(并查集)


    http://acm.hdu.edu.cn/showproblem.php?pid=1856

    More is better

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


    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.
     
    求集合元素最多的元素个数
    用num[i]记录i所在集合的元素个数
    #include<stdio.h>
    #include<string.h>
    #include<math.h>
    #include<stdlib.h>
    #define N 10000010
    
    int f[N], num[N];
    
    int Find(int x)
    {
        if(x != f[x])
            f[x] = Find(f[x]);
        return f[x];
    }
    
    int main()
    {
        int n, i, x, y, rx, ry, Max;
        while(scanf("%d", &n) != EOF)
        {
            for(i = 0 ; i <= N ; i++)
            {
                f[i] = i;
                num[i] = 1;
            }
            while(n--)
            {
                scanf("%d%d", &x, &y);
                rx = Find(x);
                ry = Find(y);
                if(rx != ry)
                {
                    f[ry] = rx;
                    num[rx] += num[ry];
                }
            }
            Max = 1;
            for(i = 0 ; i < N ; i++)
            {
                if(f[i] == i && Max < num[i])
                    Max = num[i];
            }
            printf("%d
    ", Max);
        }
        return 0;
    }
  • 相关阅读:
    Ubuntu-12.04.5 安装 oracle 12.2.0.1 数据库database软件
    Ubuntu-12.04.5 再再再次安装 oracle 11.2.0.4 数据库database软件(又不一样了!)
    Ubuntu-4.10 安装 oracle 11.2.0.4 数据库database软件(最古老的ubuntu)
    PATH add
    可望不可即 可望不可及
    天干地支
    24节气
    二进制、十进制和十六进制转换器
    信用卡三磁道
    ISO8583
  • 原文地址:https://www.cnblogs.com/qq2424260747/p/4674441.html
Copyright © 2020-2023  润新知