码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 1213 How Many Tables

时间:2014-05-08 10:10:44      阅读:308      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   tar   color   

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

bubuko.com,布布扣
 1 #include <cstdio>
 2 #include <cstring>
 3 #include <algorithm>
 4 #define maxn 2000
 5 using namespace std;
 6 
 7 int f[maxn],n,m;
 8 
 9 void inti()
10 {
11     for(int i=1; i<=n; i++)
12     {
13         f[i]=i;
14     }
15 }
16 
17 int find1(int x)
18 {
19     if(x==f[x]) return x;
20     return f[x]=find1(f[x]);
21 }
22 
23 void union2(int a,int b)
24 {
25     int fa=find1(a);
26     int fb=find1(b);
27     if(fa!=fb)
28     {
29         f[fa]=fb;
30     }
31 }
32 
33 int main()
34 {
35     int t;
36     scanf("%d",&t);
37     while(t--)
38     {
39         scanf("%d%d",&n,&m);
40         inti();
41         for(int i=1; i<=m; i++)
42         {
43             int a1,b1;
44             scanf("%d%d",&a1,&b1);
45             union2(a1,b1);
46         }
47         int ans=0;
48         for(int i=1; i<=n; i++)
49         {
50             if(f[i]==i) ans++;
51         }
52         printf("%d\n",ans);
53     }
54     return 0;
55 }
View Code

 

hdu 1213 How Many Tables,布布扣,bubuko.com

hdu 1213 How Many Tables

标签:style   blog   class   code   tar   color   

原文地址:http://www.cnblogs.com/fanminghui/p/3714529.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!