比赛 |
20120712 |
评测结果 |
AAAAAAAAAA |
题目名称 |
爆炸化合物 |
最终得分 |
100 |
用户昵称 |
Sky_miner |
运行时间 |
0.107 s |
代码语言 |
C++ |
内存使用 |
0.67 MiB |
提交时间 |
2016-02-17 08:09:38 |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<cmath>
#include<queue>
#define ma 100001
using namespace std;
int root[ma]={0};
inline int F(int x){
if(root[x]==x) return x;
return root[x]=F(root[x]);
}
int main(){
freopen("explosion.in","r",stdin);
freopen("explosion.out","w",stdout);
for(int i=1;i<=ma;i++) root[i]=i;
int x,y,s=0;
while(scanf("%d %d",&x,&y)==2){
int rx=F(x),ry=F(y);
if(rx==ry) s++;
else root[ry]=rx;
}
printf("%d",s);
return 0;
}