POJ 2524

並查集ios #include<cstdio> #include<iostream> #include<cstring> using namespace std; const int maxn = 50000 + 10; int p[maxn]; bool vis[maxn]; int tofind(int x){ if(x == p[x]) return p[x]; return
相關文章
相關標籤/搜索