1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
#include<bits/stdc++.h> #define re register typedef long long ll; template<class T> inline void read(T &x) { x=0; char ch=getchar(),t=0; while(ch<'0'||ch>'9') t|=ch=='-',ch=getchar(); while(ch>='0'&&ch<='9') x=(x<<3)+(x<<1)+(ch^48),ch=getchar(); if(t) x=-x; } template<class T,class ...T1> inline void read(T &x,T1 &...x1) { read(x),read(x1...); } template<class T> inline void write(T x) { if(x<0) putchar('-'),x=-x; if(x>9) write(x/10); putchar(x%10+'0'); } template<> inline void write(char c) { putchar(c); } template<> inline void write(char *s) { while(*s!='\0') putchar(*s++); } template<> inline void write(const char *s) { while(*s!='\0') putchar(*s++); } template<class T,class ...T1> inline void write(T x,T1 ...x1) { write(x),write(x1...); } template<class T> inline void checkMax(T &x,T y) { x=x>y?x:y; } template<class T> inline void checkMin(T &x,T y) { x=x<y?x:y; } const int MAXN=1e7+10; int N,Q; struct Dsu { int lc,rc,dep,fa; }Dsu[MAXN]; int Rt[MAXN]; struct PDsu { int Idx=0; #define ls(p) Dsu[p].lc #define rs(p) Dsu[p].rc void build(int &p,int l,int r) { p=++Idx; if(l==r) return Dsu[p].fa=l,void(); int mid=(l+r)>>1; build(ls(p),l,mid),build(rs(p),mid+1,r); } void merge(int last,int &p,int l,int r,int x,int fa) { p=++Idx;Dsu[p]=Dsu[last]; if(l==r) { Dsu[p].fa=fa,Dsu[p].dep=Dsu[last].dep; return ; } int mid=(l+r)>>1; if(x<=mid) merge(Dsu[last].lc,Dsu[p].lc,l,mid,x,fa); else merge(Dsu[last].rc,Dsu[p].rc,mid+1,r,x,fa); } void upDate(int p,int l,int r,int x) { if(l==r) return ++Dsu[p].dep,void(); int mid=(l+r)>>1; if(x<=mid) upDate(Dsu[p].lc,l,mid,x); else upDate(Dsu[p].rc,mid+1,r,x); } int query(int p,int l,int r,int x) { if(l==r) return p; int mid=(l+r)>>1; if(x<=mid) return query(Dsu[p].lc,l,mid,x); else return query(Dsu[p].rc,mid+1,r,x); } int getRt(int p,int x) { int now=query(p,1,N,x); if(Dsu[now].fa==x) return now; return getRt(p,Dsu[now].fa); } #undef ls #undef rs }Pdsu; int main() { read(N,Q); Pdsu.build(Rt[0],1,N); for(int i=1,opt,ql,qr;i<=Q;++i) { read(opt); if(opt==1) { read(ql,qr); Rt[i]=Rt[i-1]; int vl=Pdsu.getRt(Rt[i],ql),vr=Pdsu.getRt(Rt[i],qr); if(Dsu[vl].fa!=Dsu[vr].fa) { if(Dsu[vl].dep>Dsu[vr].dep) std::swap(vl,vr); Pdsu.merge(Rt[i-1],Rt[i],1,N,Dsu[vl].fa,Dsu[vr].fa); if(Dsu[vl].dep==Dsu[vr].dep) Pdsu.upDate(Rt[i],1,N,Dsu[vr].fa); } } else if(opt==2) read(ql),Rt[i]=Rt[ql]; else { read(ql,qr); Rt[i]=Rt[i-1]; int vl=Pdsu.getRt(Rt[i],ql),vr=Pdsu.getRt(Rt[i],qr); if(Dsu[vl].fa==Dsu[vr].fa) puts("1"); else puts("0"); } } return 0; }
|