日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

POJ 1703 Find them, Catch them

發布時間:2025/4/5 编程问答 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 POJ 1703 Find them, Catch them 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

簡單帶權并查集0,1關系

//#pragma comment(linker, "/STACK:1024000000,1024000000") #include<cstdio> #include<cstring> #include<cstdlib> #include<algorithm> #include<iostream> #include<sstream> #include<cmath> #include<climits> #include<string> #include<map> #include<queue> #include<vector> #include<stack> #include<set> using namespace std; typedef long long ll; typedef pair<int,int> pii; #define pb(a) push_back(a) #define INF 0x1f1f1f1f #define lson idx<<1,l,mid #define rson idx<<1|1,mid+1,r #define PI 3.1415926535898 template<class T> T min(const T& a,const T& b,const T& c) {return min(min(a,b),min(a,c)); } template<class T> T max(const T& a,const T& b,const T& c) {return max(max(a,b),max(a,c)); } void debug() { #ifdef ONLINE_JUDGE #elsefreopen("d:\\in.txt","r",stdin);freopen("d:\\out1.txt","w",stdout); #endif } int getch() {int ch;while((ch=getchar())!=EOF) {if(ch!=' '&&ch!=' ')return ch;}return EOF; } int da[110000],rel[110000]; int find(int a) {if(a==da[a])return a;int root=find(da[a]);rel[a]=(rel[a]+rel[da[a]])%2;return da[a]=root; } int main() {int t;scanf("%d",&t);for(int ca=1;ca<=t;ca++){int n,q;scanf("%d%d",&n,&q);for(int i=1;i<=n;i++){da[i]=i;rel[i]=0;}for(int Q=1;Q<=q;Q++){char op[10];int a,b;scanf("%s%d%d",op,&a,&b);int fa=find(a),fb=find(b);if(op[0]=='A'){if(fa!=fb)printf("Not sure yet.\n");else printf("%s\n",(rel[a]-rel[b]+2)%2?"In different gangs.":"In the same gang.");}else{if(fa!=fb){da[fb]=fa;rel[fb]=(rel[a]-rel[b]+1)%2;}}}}return 0; } View Code

?

轉載于:https://www.cnblogs.com/BMan/p/3274849.html

總結

以上是生活随笔為你收集整理的POJ 1703 Find them, Catch them的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。