标签:script comm 思路 sub other scanf 统计 cep 并查集
题目链接:
http://acm.hdu.edu.cn/showproblem.php?pid=1232
题目类型:
并查集
题意概括:
给出N个城镇M条道路,问联通每一个城镇还需要多少条路。
解题思路:
并查集模板
题目:
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 53645 Accepted Submission(s): 28618
# include <stdio.h>
int a[1010];
int find(int x)
{
if(a[x]==-1)
return x;
return a[x]=find(a[x]);
}
void bing(int x,int y)
{
int f1,f2;
f1=find(x);
f2=find(y);
if(f1!=f2)
a[f1]=f2;
}
int main ()
{
int i,m,n,p,q,sum;
while(scanf("%d",&n),n)
{
scanf("%d",&m);
for(i=1;i<=n;i++)
a[i]=-1;
while(m--)
{
scanf("%d%d",&p,&q);
bing(p,q);
}
sum=0;
for(i=1;i<=n;i++)
{
if(a[i]==-1)
sum++;
}
printf("%d\n",sum-1);
}
return 0;
}
标签:script comm 思路 sub other scanf 统计 cep 并查集
原文地址:http://www.cnblogs.com/love-sherry/p/6942436.html