-
Notifications
You must be signed in to change notification settings - Fork 0
/
39SmoothTraffic1012.cpp
67 lines (66 loc) · 1.18 KB
/
39SmoothTraffic1012.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include<iostream>
using namespace std;
#define N 1000
int tree[N];
int FindRoot(int x)
{
if(tree[x]==-1)
return x;
else
{
int tmp=FindRoot(tree[x]);
tree[x]=tmp;
return tmp;
}
}
//非递归实现
/*int FindRoot(int x)
{
if(tree[x]==-1)
return x;
else
{
int tmp=x;
while(tree[x]!=-1)
{
x=tree[x];
}
int ret=x;
x=tmp;
while(tree[x]!=-1)
{
tree[x]=ret;
x=tree[x];
}
return ret;
}
}*/
int main()
{
int n,m;
while(cin>>n&&n!=0)
{
cin>>m;
for(int i=1; i<=n; i++) //刚开始每个城镇都是孤立的节点,从1-n编号
tree[i]=-1;
int a,b;
for(int i=0; i<m; i++)
{
cin>>a>>b;
a=FindRoot(a);
b=FindRoot(b);
if(a!=b)
{
tree[a]=b;//如果两个节点不在一个集合中 则把一个的根节点设置为另一个元素 即合并两个集合
}
}
int ans=0;
for(int i=1; i<=n; i++)
{
if(tree[i]==-1)
ans++;
}
cout<<ans-1<<endl;
}
return 0;
}