首页 > 代码库 > POJ 1703 Find them, Catch them(种类并查集)
POJ 1703 Find them, Catch them(种类并查集)
题目地址:POJ 1703
种类并查集水题。
代码如下:
#include <iostream> #include <cstdio> #include <string> #include <cstring> #include <stdlib.h> #include <math.h> #include <ctype.h> #include <queue> #include <map> #include <set> #include <algorithm> using namespace std; int bin[600000], rank[600000]; int find1(int x) { int y; if(bin[x]!=x) { y=bin[x]; bin[x]=find1(bin[x]); rank[x]=rank[x]^rank[y]; } return bin[x]; } int main() { int t, n, m, i, a, b, f1, f2; char c; scanf("%d",&t); while(t--) { scanf("%d%d",&n,&m); for(i=1;i<=n;i++) { bin[i]=i; rank[i]=0; } while(m--) { getchar(); scanf("%c%d%d",&c,&a,&b); f1=find1(a); f2=find1(b); if(c=='D') { if(f1!=f2) { bin[f2]=f1; rank[f2]=rank[a]^rank[b]^1; } } else { if(f1!=f2) { printf("Not sure yet.\n"); } else { if(rank[a]!=rank[b]) puts("In different gangs."); else puts("In the same gang."); } } } } return 0; }
POJ 1703 Find them, Catch them(种类并查集)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。