bzoj1529: [POI2005]ska Piggy banks

传送门: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

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值