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 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
|
#include<iostream> #include<cstdio> long long read() { long long x=0,f=1; char c=getchar(); while(!isdigit(c)){if(c=='-') f=-1;c=getchar();} while(isdigit(c)){x=x*10+c-'0';c=getchar();} return x*f; } using namespace std; const int N=100000+1000; const long long poi=51061; struct LCT { long long son[N][2],fa[N],w[N],sum[N],plus[N],take[N],lazy[N],size[N]; inline void Mirror(int x) { lazy[x]=!lazy[x]; swap(son[x][0],son[x][1]); } inline void pushdown(int x) { if(lazy[x]==true) { Mirror(son[x][0]); Mirror(son[x][1]); lazy[x]=false; } if(son[x][0]!=0) { w[son[x][0]]=(w[son[x][0]]*take[x]+plus[x])%poi; take[son[x][0]]=take[son[x][0]]*take[x]%poi; plus[son[x][0]]=(plus[son[x][0]]*take[x]+plus[x])%poi; sum[son[x][0]]=(sum[son[x][0]]*take[x]+size[son[x][0]]*plus[x])%poi; } if(son[x][1]!=0) { w[son[x][1]]=(w[son[x][1]]*take[x]+plus[x])%poi; take[son[x][1]]=(take[son[x][1]]*take[x])%poi; plus[son[x][1]]=(plus[son[x][1]]*take[x]+plus[x])%poi; sum[son[x][1]]=(sum[son[x][1]]*take[x]+size[son[x][1]]*plus[x])%poi; } plus[x]=0,take[x]=1; } inline void update(int x) { size[0]=sum[0]=0; sum[x]=(sum[son[x][0]]+sum[son[x][1]]+w[x])%poi; size[x]=(size[son[x][0]]+size[son[x][1]]+1); } inline void rotate(int x,int type) { int y=fa[x],z=fa[y]; fa[x]=z; if(IsRoot(y)==false) son[z][y==son[z][1]]=x; fa[son[x][type]]=y,son[y][!type]=son[x][type]; fa[y]=x,son[x][type]=y; update(y),update(x); } bool IsRoot(int x) { return (x!=son[fa[x]][0] and x!=son[fa[x]][1]); } int mstack[N],top; void splay(int x) { mstack[top=1]=x; for(int now=x;IsRoot(now)==false;now=fa[now]) mstack[++top]=fa[now]; for(;top>0;top--) pushdown(mstack[top]); while(IsRoot(x)==false) { if(IsRoot(fa[x])==false and x==son[fa[x]][fa[x]==son[fa[fa[x]]][1]]) rotate(fa[x],x==son[fa[x]][0]), rotate(x,x==son[fa[x]][0]); else rotate(x,x==son[fa[x]][0]); } } void Access(int x) { for(int t=0;x!=0;t=x,x=fa[x]) splay(x),son[x][1]=t,fa[t]=x,update(x); } int GetRoot(int x) { Access(x),splay(x); while(son[x][0]!=0) pushdown(x),x=son[x][0]; splay(x); return x; } void MakeRoot(int x) { Access(x); splay(x); Mirror(x); } void Link(int x,int y) { if(GetRoot(x)==GetRoot(y)) return; MakeRoot(x); fa[x]=y; } void Split(int x,int y) { MakeRoot(y); Access(x),splay(x); } void Cut(int x,int y) { Split(x,y); if(y!=son[x][0] or fa[y]!=x) return; son[x][0]=0,fa[y]=0; update(x); } void Add(int x,int y,long long num) { Split(x,y); plus[x]=num%poi,w[x]=(w[x]+num)%poi,sum[x]=(sum[x]+size[x]*num)%poi; } void Take(int x,int y,long long num) { Split(x,y); take[x]=num%poi,w[x]=(w[x]*num)%poi,sum[x]=sum[x]*num%poi; } long long Query(int x,int y) { Split(x,y); return sum[x]%poi; } }lct; int n,q; int main() { n=read(),q=read(); for(int i=1;i<=n;i++) lct.take[i]=lct.w[i]=lct.sum[i]=lct.size[i]=1; for(int i=1;i<n;i++) { int s=read(),t=read(); lct.Link(s,t); }
char OP[5]; for(int i=1;i<=q;i++) { scanf("%s",OP+1); if(OP[1]=='+') { long long u=read(),v=read(),x=read()%poi; lct.Add(u,v,x); } else if(OP[1]=='-') { long long u1=read(),v1=read(),u2=read(),v2=read(); lct.Cut(u1,v1); lct.Link(u2,v2); } else if(OP[1]=='*') { long long u=read(),v=read(),x=read()%poi; lct.Take(u,v,x); } else { long long u=read(),v=read(); printf("%lld\n",lct.Query(u,v)); } } return 0; }
|