HDU1856:More is better

来源:互联网 发布:电机数据大全安装尺寸 编辑:程序博客网 时间:2024/06/10 17:30
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
41 23 45 61 641 23 45 67 8
 

Sample Output
42
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来记载所有情况,在比较找出最大的


 

#include <stdio.h>struct A{    int num;    int pre;} set[10000005];void bulid(int n){    int i;    for(i = 1; i<=n; i++)    {        set[i].pre = i;        set[i].num = 1;    }}int find(int x){    if(set[x].pre == x)        return x;    return set[x].pre = find(set[x].pre);}void Union(int x,int y){    set[x].pre = y;    set[y].num+=set[x].num;}int main(){    int big,n,f1,f2,i;    int x[100005],y[100005];    while(~scanf("%d",&n))    {        big = 0;        int ans = 0;        if(n==0)        {            printf("1\n");            continue;        }        for(i = 1; i<=n; i++)        {            scanf("%d%d",&x[i],&y[i]);            if(x[i]>big) big = x[i];            if(y[i]> big) big = y[i];        }        bulid(big);        for(i = 1; i<=n; i++)        {            f1 = find(x[i]);            f2 = find(y[i]);            if(f1!=f2)                Union(f1,f2);        }        for(i = 1; i<=big; i++)        {            if(set[i].num > ans)                ans = set[i].num;        }        printf("%d\n",ans);    }    return 0;}

原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 微信上有钱账号就是怎么办 手机网速不给力怎么办 xp系统登录密码忘了怎么办 手机百度云网络出错怎么办 百度账号提示异常风险怎么办 刷xp框架卡米怎么办 全民k歌歌曲下架怎么办 全民k歌伴奏下架怎么办 苹果手机图片的图标打不开怎么办 电脑页面加载不出来怎么办 电脑主页面加载不出来怎么办 桌面图标不见了怎么办右键无反应 手机一直闪退该怎么办 点击华为设置闪退怎么办 小白摄像头获取视频文件失败怎么办 为什么解压文件老提示失败怎么办 b站sd卡写入失败怎么办 手机检测不到sd卡怎么办 华为sd卡不可用怎么办 u盘延缓写入失败怎么办 手机提示sd卡不可用怎么办 显示sd卡不可用怎么办 小米手机检测不到sd卡怎么办 小米手机sd卡写入失败怎么办 没有检测到sd卡怎么办 e站图片配额用尽怎么办 内存卡密码忘了怎么办 电脑上酷狗音乐播放失败怎么办 播放失败不支持该文件怎么办 手机山寨云资源失效怎么办 支付密码输错了怎么办 微信密码锁定了怎么办 电脑网易云音乐闪退怎么办 逆战耳机电流声怎么办 肠道感染一直吃药治不好怎么办 如果24小时以后还没到账该怎么办 在游戏平台充值没到账该怎么办 充值豪华黄钻没到账该怎么办 起点签到签满了怎么办 ipad锁屏声音小怎么办 扣扣邮箱文件超大了怎么办