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

A - 修路

时间:2018-03-10 17:47:09      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:post   AC   for   mem   一个   log   str   爸爸   ons   

并查集是一个找爸爸的过程。

  通过finds来查找某一值的父亲

  通过unions来联合两数字之间的联系。

下边给出一实例来解释

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

以下为代码

 1 #include<stdio.h>
 2 #include<string.h>
 3 #define MAX_N 1050
 4 int pre[MAX_N];
 5 int finds(int x)
 6 {
 7     return  x==pre[x]?x:finds(pre[x]);
 8 }
 9 void unions(int x, int y)
10 {
11     int u=finds(x);
12     int v=finds(y);
13     if(u==v)
14         return;
15     pre[u]=v;
16 }
17 int main()
18 {
19     int n,m,ans;
20     while(scanf("%d",&n)!=EOF&&n)
21     {
22         memset(pre,0,sizeof(pre));
23         for(int i=1; i<=n; i++)
24         {
25             pre[i]=i;
26         }
27         scanf("%d",&m);
28         for(int j=0; j<m; j++)
29         {
30             int u,v;
31             scanf("%d%d",&u,&v);
32             unions(u,v);
33         }
34         ans=-1;
35         for(int i=1; i<=n; i++)
36         {
37             if(pre[i]==i)
38                 ans++;
39         }
40         printf("%d\n",ans);
41     }
42 }

 

A - 修路

标签:post   AC   for   mem   一个   log   str   爸爸   ons   

原文地址:https://www.cnblogs.com/Yinchen-One/p/8540721.html

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