oj---九度oj--1012畅通工程

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oj---九度oj--1012畅通工程相关的知识,希望对你有一定的参考价值。

 

AC

#include<cstdio>
#include<iostream>
#include<algorithm> //fill
using namespace std; 
int root[1005];
int findroot(int x){
    if(root[x]==-1)
        return x;
    else{
        int tmp=findroot(root[x]);
        root[x]=tmp;
        return tmp;
    }
}
int main(){
    int n,m;
    while(scanf("%d",&n)!=EOF){
        if(n==0) break;
        scanf("%d",&m);
        
        fill(root,root+1005,-1);
        int tmp1,tmp2;
        for(int i=0;i<m;i++){
            scanf("%d %d",&tmp1,&tmp2);
            int roota=findroot(tmp1);
            int rootb=findroot(tmp2);
            if(roota!=rootb){
                root[roota]=rootb;
            }
        }
        int cnt=0;
        for(int i=1;i<=n;i++){
        
            if(root[i]==-1)
                cnt++;
        }
        printf("%d\n",cnt-1);
    }
    return 0;
}

 

以上是关于oj---九度oj--1012畅通工程的主要内容,如果未能解决你的问题,请参考以下文章

&lt;九度 OJ&gt;题目1012:畅通project

每日一九度之 题目1028:继续畅通工程

合肥工业大学oj p1012

Hdu oj 1012 u Calculate e

九度oj 题目1397:查找数段

九度OJ-题目1009:二叉搜索树