首页 > 代码库 > poj1703并查集
poj1703并查集
直接搞。
#include <cstdio>#include <cstring>#include <algorithm>#include <climits>#include <string>#include <iostream>#include <map>#include <cstdlib>#include <list>#include <set>#include <queue>#include <stack>#include<math.h>using namespace std;int father[222222];int getfather(int x){ if(x!=father[x]) father[x]=getfather(father[x]); return father[x];}int main(){ int t;int n,m; char str[100]; int a;int b; scanf("%d",&t); while(t--){ scanf("%d%d",&n,&m); for(int i = 1;i<=2*n;i++) father[i]=i; for(int i = 0 ;i< m;i++){ scanf("%s",str); scanf("%d%d",&a,&b); int fa=getfather(a);int fb=getfather(b);int fa1= getfather(a+n); int fb1=getfather(b+n); if(str[0]==‘A‘){ if(fa==fb){ cout<<"In the same gang."<<endl; } else if(fa1==fb&&fb1==fa) cout<<"In different gangs."<<endl; else{ cout<<"Not sure yet."<<endl; } } else{ // cout<<father[fa]<<" "<<fb1<<endl;system("pause"); father[fa]=fb1;father[fa1]=fb; } } } return 0;}
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。