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

bzoj1529: [POI2005]ska Piggy banks

时间:2016-06-12 18:23:16      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

传送门:http://www.lydsy.com/JudgeOnline/problem.php?id=1529

题目大意:Byteazar 有 N 个小猪存钱罐. 每个存钱罐只能用钥匙打开或者砸开. Byteazar 已经把每个存钱罐的钥匙放到了某些存钱罐里. Byteazar 现在想买一台汽车于是要把所有的钱都取出来. 他想尽量少的打破存钱罐取出                  所有的钱,问最少要打破多少个存钱罐.

题解:并查集

代码:

技术分享
 1 #include<iostream>
 2 #include<cstring>
 3 #include<cstdio>
 4 #include<algorithm>
 5 #include<cmath>
 6 #define maxn 1000005
 7 using namespace std;
 8 int n,tot,ans;
 9 int fa[maxn];
10 int read()
11 {
12     int x=0; char ch; bool bo=0;
13     while (ch=getchar(),ch<0||ch>9) if (ch==-) bo=1;
14     while (x=x*10+ch-0,ch=getchar(),ch>=0&&ch<=9);
15     if (bo) return -x; return x;
16 }
17 int find(int x)
18 {
19     if (fa[x]!=x) fa[x]=find(fa[x]); 
20     return fa[x];
21 }
22 int main()
23 {
24     n=read();
25     for (int i=1; i<=n; i++) fa[i]=i;
26     for (int i=1; i<=n; i++)
27     {
28         int x=read();
29         int q=find(i),p=find(x);
30         if (q!=p) fa[q]=p;
31     }
32     for (int i=1; i<=n; i++) if (fa[i]==i) ans++;
33     printf("%d\n",ans);
34 }
View Code

 

bzoj1529: [POI2005]ska Piggy banks

标签:

原文地址:http://www.cnblogs.com/HQHQ/p/5578217.html

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