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 152 153
| #include<bits/stdc++.h> #define int long long #define MAXN 100010*2 using namespace std; int read(){ char ch=getchar();int res=0,f=1; while(ch<'0'ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9') res=res*10+ch-'0',ch=getchar(); return res*f; } void write(int x){ if(x<0) putchar('-'),x=-x; if(x<10) putchar(x+'0'); else write(x/10),putchar(x%10+'0'); } int n,m,op,u,v; int fa[MAXN]; int getfa(int x){ return x==fa[x]?x:fa[x]=getfa(fa[x]); } class LinkCutTree{ public: struct node{ int f,c[2],v,xs,tag,xx; }t[300010]; bool Isroot(int x){ int y=t[x].f; return !(t[y].c[0]==xt[y].c[1]==x); } void Upd(int x){ t[x].xs=(1ll<<t[x].v)t[t[x].c[0]].xst[t[x].c[1]].xs; } void Psd(int x){ if(t[x].tag){ swap(t[x].c[0],t[x].c[1]); if(t[x].c[0])t[t[x].c[0]].tag^=1; if(t[x].c[1])t[t[x].c[1]].tag^=1; t[x].tag=0; } } void Rotate(int x){ int y=t[x].f,z=t[y].f; Psd(y); Psd(x); int c=t[y].c[1]==x; if(!Isroot(y)){ int gc=t[z].c[1]==y; t[z].c[gc]=x; } t[x].f=z; t[y].c[c]=t[x].c[c^1]; t[t[x].c[c^1]].f=y; t[x].c[c^1]=y; t[y].f=x; Upd(y); Upd(x); } void Splay(int x){ Psd(x); while(!Isroot(x)){ int y=t[x].f,z=t[y].f; if(Isroot(y))Rotate(x); else{ Psd(z); Psd(y); int c=t[y].c[1]==x,gc=t[z].c[1]==y; if(c==gc)Rotate(y); else Rotate(x); Rotate(x); } } } void Access(int x,int lst){ if(!x)return; Splay(x); t[x].c[1]=lst; Upd(x); Access(t[x].f,x); } void Makeroot(int x){ Access(x,0); Splay(x); t[x].tag^=1; } void Split(int x,int y){ Makeroot(x); Access(y,0); Splay(y); } int Findroot(int x){ Access(x,0); Splay(x); Psd(x); while(t[x].c[0]){ x=t[x].c[0]; Psd(x); } Splay(x); return x; } int Link(int x,int y){ Makeroot(x); if(Findroot(y)!=x){ t[x].f=y; return 1; } return 0; } void Cut(int x,int y){ Makeroot(x); Psd(x); if(Findroot(y)==x&&t[y].f==x&&!t[y].c[0]){ t[x].c[1]=t[y].f=0; Upd(x); } } int Query(int x,int y){ if(Findroot(x)!=Findroot(y)){ return -1; } Split(x,y); int tmp=t[y].xs,sum=0; while(tmp){ tmp-=(tmp&-tmp),++sum; } return sum; } void Change(int x,int y){ Splay(x); t[x].v=y; Upd(x); } }tr; signed main(){ n=read();m=read(); for(int i=1;i<=n;i++) tr.t[i].v=read(),fa[i]=i,tr.Upd(i); for(int i=1;i<=m;i++){ op=read();u=read();v=read(); if(op==1){ int tmp=tr.Link(u,v); if(tmp==1){ int Cost=(tr.t[u].v+tr.t[v].v); Cost>>=1; tr.Change(u,Cost); tr.Change(v,Cost); } }else if(op==2){ int tmp=tr.Query(u,v); write(tmp),putchar('\n'); } } return 0; }
|