Luogu P3367 模板并查集
Posted mogeko
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Luogu P3367 模板并查集相关的知识,希望对你有一定的参考价值。
#include<cstdio> using namespace std; int fa[10005]; int n,m,x,y,z,xx,yy; int getfather(int x){ if(x == fa[x])return x; return fa[x] = getfather(fa[x]); //这儿也可以写成“fa[x] = getfather(fa[x]);return fa[x];” } int main(){ scanf("%d%d",&n,&m); for(int i = 1;i <= n;i++) fa[i] = i; while(m){ m--; scanf("%d%d%d",&z,&x,&y); xx = getfather(x); yy = getfather(y); if(z == 1) //合并 fa[xx] = yy; if(z == 2) //查询 if(xx == yy)printf("Y "); else printf("N "); } return 0; }
以上是关于Luogu P3367 模板并查集的主要内容,如果未能解决你的问题,请参考以下文章