标签:查询 否则 orm algo sample inpu lse ios tput
如题,现在有一个并查集,你需要完成合并和查询操作。
第一行包含两个整数N、M,表示共有N个元素和M个操作。
接下来M行,每行包含三个整数Zi、Xi、Yi
当Zi=1时,将Xi与Yi所在的集合合并
当Zi=2时,输出Xi与Yi是否在同一集合内,是的话输出Y;否则话输出N
如上,对于每一个Zi=2的操作,都有一行输出,每行包含一个大写字母,为Y或者N
4 7 2 1 2 1 1 2 2 1 2 1 3 4 2 1 4 1 2 3 2 1 4
N Y N Y
时空限制:1000ms,128M
数据规模:
对于30%的数据,N<=10,M<=20;
对于70%的数据,N<=100,M<=1000;
对于100%的数据,N<=10000,M<=200000。
#include<algorithm> #include<iostream> #include<cstring> #include<cstdio> #include<cmath> #include<queue> using namespace std; int n,m,z,x,y,fa[10005]; int find(int x) { if (x==fa[x]) return x; return fa[x]=find(fa[x]); } int main(){ scanf("%d%d",&n,&m); for(int i=1;i<=n;++i) { fa[i]=i; } while(m--){ scanf("%d%d%d",&z,&x,&y); int a=find(x),b=find(y); if(z==1){ fa[a]=b; } if(z==2){ if(a==b) { printf("Y\n"); } else { printf("N\n"); } } } return 0; }
标签:查询 否则 orm algo sample inpu lse ios tput
原文地址:https://www.cnblogs.com/xiongchongwen/p/11825003.html