HDOJ-1232(并查集)

题目:http://acm.hdu.edu.cn/showproblem.php?pid=1232

AC代码:

#include
int v[1002];//定义全局变量,v[i]代表城镇。

int find(int x){
    int r = x;
    while(r != v[r])
        r = v[r];
    return r;//返回x所在的集合。该集合用树的根节点来表示。
}

void merge(int x, int y){
    int fx,fy;
    fx = find(x);
    fy = find(y);//返回的是y点所在的集合。也就是用来标记集合的根节点
    if(fx != fy)
        v[fx] = fy;
}

int main(){
    int m,n,i,j,x,y,count;
    while(scanf("%d",&n)&&(n!=0)){
        for(i = 1; i <= n; i++)
            v[i] = i;//初始化v[i],用i来给城镇编号。
        scanf("%d",&m);
        for(j = 1; j <= m; j++){
            scanf("%d%d",&x,&y);
            merge(x,y);
        }
        for(count = -1,i = 1; i <= n; i++)
            if(v[i] == i)//v[i] == i的数量,即为城镇划分的个数(count+1)。
                count++;
        printf("%d\n",count);
    }
    return 0;
}

你可能感兴趣的:(ACM刷题,算法&数据结构,C&Cplusplus)