并查集 试水 hdu1232

Posted clljs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了并查集 试水 hdu1232相关的知识,希望对你有一定的参考价值。

技术分享图片
#include <stdio.h>
#include <stdlib.h>
int n,m;
int father[1000],rank[1000];
int count;

int find(int x)
{
    if(father[x]==x) return x;
        else return father[x]=find(father[x]);
}
void unit(int x,int y)
{
    x=find(x);
    y=find(y);
    if(x==y) return;

    if(rank[x]<rank[y]){
        father[x]=y;
        count--;
    }else{
            father[y]=x;
            if(rank[x]==rank[y]) rank[x]++;
            count--;
    }
}
int main()
{
    while(scanf("%d",&n)==1){
        if(n==0) break;
        scanf("%d",&m);
        count=n;
        int i;
        //初始化
        for(i=0;i<n;i++){
            father[i]=i;
            rank[i]=0;
        }
        int x,y;
        for(i=0;i<m;i++){
            scanf("%d%d",&x,&y);
            unit(x-1,y-1);
        }
        printf("%d
",count-1);
    }
    return 0;
}
View Code

 

以上是关于并查集 试水 hdu1232的主要内容,如果未能解决你的问题,请参考以下文章

hdu-1232 畅通工程---并查集

HDU 1232 畅通工程(并查集)

HDU1232-并查集

并查集-HDU1232

hdu1232 畅通工程 基础并查集

HDU-1232-通畅工程(并查集)