bzoj2733: [HNOI2012]永無鄉(並查集+主席樹)
題目傳送門
。
解法:
跟3545解法差不多。
https://blog.csdn.net/hanks_o/article/details/79903342
這道題還沒了邊權。
直接連通。
那麼並查集。
據說要啟發式。
小的向大的合併。
然後就沒了?
程式碼實現:
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<queue>
using namespace std;
struct node {int lc,rc,c;}t[2100000];int cnt,rt[110000];
void build(int &u,int l,int r,int p) {
if(u==0)u=++cnt;t[u].c++;
if(l==r)return ;int mid=(l+r)/2;
if(p<=mid)build(t[u].lc,l,mid,p);
else build(t[u].rc,mid+1,r,p);
}
void Merge(int &u1,int u2) {
if(u1==0) {u1=u2;return ;}if(u2==0)return ;t[u1].c+=t[u2].c;
Merge(t[u1].lc,t[u2].lc);Merge(t[u1].rc,t[u2].rc);
}
int fa[110000];int findfa(int x) {if(fa[x]!=x)fa[x]=findfa(fa[x]);return fa[x];}
int s[110000];
int find(int u,int l,int r,int k) {
if(t[u].c==0)return -1;
if(l==r)return s[l];int mid=(l+r)/2,c=t[t[u].lc].c;
if(k<=c)return find(t[u].lc,l,mid,k);
else return find(t[u].rc,mid+1,r,k-c);
}
int main() {
int n,m;scanf("%d%d",&n,&m);cnt=0;
for(int i=1;i<=n;i++){int x;scanf("%d",&x);build(rt[i],1,n,x);s[x]=i;}
for(int i=1;i<=n;i++)fa[i]=i;
for(int i=1;i<=m;i++) {
int x,y;scanf("%d%d",&x,&y);
int xx=findfa(x),yy=findfa(y);
if(xx!=yy) {
if(t[rt[xx]].c<=t[rt[yy]].c) {fa[xx]=yy;Merge(rt[yy],rt[xx]);}
else {fa[yy]=xx;Merge(rt[xx],rt[yy]);}
}
}
int Q;scanf("%d",&Q);
while(Q--) {
char s[5];int x,y;scanf("%s%d%d",s+1,&x,&y);
if(s[1]=='Q') printf("%d\n",find(rt[findfa(x)],1,n,y));
else {
int xx=findfa(x),yy=findfa(y);
if(xx!=yy) {
if(t[rt[xx]].c<=t[rt[yy]].c) {fa[xx]=yy;Merge(rt[yy],rt[xx]);}
else {fa[yy]=xx;Merge(rt[xx],rt[yy]);}
}
}
}
return 0;
}
相關文章
- 洛谷 P3224 永無鄉
- 主席樹
- 樹(tree) - 題解(帶權並查集)並查集
- 主席樹模板
- 並查集到帶權並查集並查集
- 【並查集】【帶偏移的並查集】食物鏈並查集
- hdu4313 貪心並查集 || 樹形dp並查集
- 並查集(一)並查集的幾種實現並查集
- BZOJ 3673 可持久化並查集 by zky 可持續化線段樹+並查集啟發式合併持久化並查集
- 3.1並查集並查集
- 並查集(小白)並查集
- 動態主席樹模板
- 並查集(Union Find)並查集
- 並查集應用並查集
- The Door Problem 並查集並查集
- 並查集練習並查集
- 並查集的使用並查集
- 並查集—應用並查集
- 寫模板, 並查集。並查集
- 並查集跳躍並查集
- 各種並查集並查集
- 食物鏈(並查集)並查集
- 並查集(二)並查集的演算法應用案例上並查集演算法
- 佈線問題_ny_38(並查集+最小生成樹).java並查集Java
- 2013成都站F題||hdu4786 並查集 生成樹並查集
- The Suspects-並查集(4)並查集
- [leetcode] 並查集(Ⅰ)LeetCode並查集
- [leetcode] 並查集(Ⅱ)LeetCode並查集
- [leetcode] 並查集(Ⅲ)LeetCode並查集
- 並查集演算法並查集演算法
- 並查集深度應用並查集
- 【轉】種類並查集並查集
- 並查集java實現並查集Java
- 並查集-Java實現並查集Java
- 並查集題目合集並查集
- 並查集以及應用並查集
- 並查集的應用並查集
- 暢通工程(並查集)並查集