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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
| #include<bits/stdc++.h> #define int long long #define remove _ using namespace std; const int N=1e6+10,M=2*N; int h[N],e[M],ne[M],w[M],idx,cnt,fa[N],top[N],nw[N],dep[N],tmp[N]; int id[N],sz[N],son[N]; typedef pair<int, int> PII; PII ab[N]; int n,x,y,a,b,c,m; string op; int rt;
struct node{ int sum,max,min,lazy; int ls,rs; }t[N*4]; int root[N]; int color[N]; void add(int a,int b,int c){ e[++idx]=b,w[idx]=c,ne[idx]=h[a],h[a]=idx; } void dfs1(int u,int father){ dep[u]=dep[father]+1,fa[u]=father,sz[u]=1; for(int i=h[u];i;i=ne[i]){ int j=e[i]; if(j==father)continue; dfs1(j,u); tmp[j]=w[i]; sz[u]+=sz[j]; if(sz[son[u]]<sz[j])son[u]=j; } } void dfs2(int x,int t){ id[x]=++cnt,nw[cnt]=tmp[x],top[x]=t; if(son[x])dfs2(son[x],t); for(int i=h[x];i;i=ne[i]){ int j=e[i]; if(j==fa[x]||j==son[x])continue; dfs2(j,j); } } void pushup(int u){ t[u].sum=t[t[u].ls].sum+t[t[u].rs].sum; t[u].max=max(t[t[u].ls].max,t[t[u].rs].max); t[u].min=min(t[t[u].ls].min,t[t[u].rs].min); } void pushdown(int u){ if(t[u].lazy==0)return; if(!t[u].ls)t[u].ls=++rt; if(!t[u].rs)t[u].rs=++rt; auto &L=t[t[u].ls]; auto &R=t[t[u].rs]; L.lazy^=1,R.lazy^=1; L.sum=-L.sum,L.max=-L.max,L.min=-L.min; R.sum=-R.sum,R.max=-R.max,R.min=-R.min; swap(L.max,L.min),swap(R.max,R.min); t[u].lazy=0; }
void modify(int &u,int l,int r,int i,int k){ if(!u)u=++rt; if(l==r){ t[u].sum=t[u].max=t[u].min=k; return; } pushdown(u); int mid=l+r>>1; if(i<=mid)modify(t[u].ls,l,mid,i,k); else modify(t[u].rs,mid+1,r,i,k); pushup(u); } void remove(int &u,int l,int r,int i,int k){ if(l==r){ t[u].max=-1e9; t[u].sum=0; t[u].min=1e9; t[u].lazy=0; return; } int mid=l+r>>1; pushdown(u); if(i<=mid)remove(t[u].ls,l,mid,i,k); else remove(t[u].rs,mid+1,r,i,k); pushup(u); } void update(int &u,int l,int r,int ql,int qr,int lazy=1){ if(l>qr||r<ql)return; if(!u)u=++rt; if(l>=ql&&r<=qr){ t[u].sum=-t[u].sum; t[u].max=-t[u].max; t[u].min=-t[u].min; swap(t[u].max,t[u].min); t[u].lazy^=1; return; } pushdown(u); int mid=l+r>>1; if(ql<=mid)update(t[u].ls,l,mid,ql,qr); if(qr>mid)update(t[u].rs,mid+1,r,ql,qr); pushup(u); } int qmax(int u,int l,int r,int ql,int qr){ if(!u)return -1e9; if(l>qr||r<ql)return -1e9; if(l>=ql&&r<=qr)return t[u].max; pushdown(u); int mid=l+r>>1; int ans=-1e9; if(ql<=mid)ans=max(ans,qmax(t[u].ls,l,mid,ql,qr)); if(qr> mid)ans=max(ans,qmax(t[u].rs,mid+1,r,ql,qr)); return ans; } int qmin(int u,int l,int r,int ql,int qr){ if(!u)return 1e9; if(l>qr||r<ql)return 1e9; if(l>=ql&&r<=qr)return t[u].min; pushdown(u); int mid=l+r>>1; int ans=1e9; if(ql<=mid)ans=min(ans,qmin(t[u].ls,l,mid,ql,qr)); if(qr> mid)ans=min(ans,qmin(t[u].rs,mid+1,r,ql,qr)); return ans; } int qsum(int u,int l,int r,int ql,int qr){ if(!u)return 0; if(l>qr||r<ql)return 0; if(l>=ql&&r<=qr)return t[u].sum; pushdown(u); int mid=l+r>>1; int ans=0; if(ql<=mid)ans+=qsum(t[u].ls,l,mid,ql,qr); if(qr> mid)ans+=qsum(t[u].rs,mid+1,r,ql,qr); return ans; }
void update(int &o,int x,int y){ while(top[x]!=top[y]){ if(dep[top[x]]<dep[top[y]])swap(x,y); update(o,1,n,id[top[x]],id[x]); x=fa[top[x]]; } if(dep[x]>dep[y])swap(x,y); if(x!=y)update(o,1,n,id[x]+1,id[y]); } int qmax(int o,int x,int y){ int ans=-1e9; while(top[x]!=top[y]){ if(dep[top[x]]<dep[top[y]])swap(x,y); ans=max(ans, qmax(o,1,n,id[top[x]],id[x]) ); x=fa[top[x]]; } if(dep[x]>dep[y])swap(x,y); if(x!=y)ans=max(ans,qmax(o,1,n,id[x]+1,id[y])); return ans; }
int qmin(int o,int x,int y){ int ans=1e9; while(top[x]!=top[y]){ if(dep[top[x]]<dep[top[y]])swap(x,y); ans=min(ans, qmin(o,1,n,id[top[x]],id[x])); x=fa[top[x]]; } if(dep[x]>dep[y])swap(x,y); if(x!=y)ans=min(ans,qmin(o,1,n,id[x]+1,id[y])); return ans; } int qsum(int o,int x,int y){ int ans=0; while(top[x]!=top[y]){ if(dep[top[x]]<dep[top[y]])swap(x,y); ans+=qsum(o,1,n,id[top[x]],id[x]); x=fa[top[x]]; } if(dep[x]>dep[y])swap(x,y); if(x!=y)ans+=qsum(o,1,n,id[x]+1,id[y]); return ans; }
signed main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); cin>>n; for(int i=1;i<n;i++){ cin>>a>>b>>c; a++,b++; ab[i]={a,b}; add(a,b,c); add(b,a,c); } dfs1(1,0); dfs2(1,1); for(int i=1;i<=n;i++)color[i]=1; for(int i=1;i<=n;i++)modify(root[color[i]],1,n,id[i],tmp[i]); cin>>m; while(m--){ cin>>op>>x>>y; if(op=="C"){ int a=ab[x].first; int b=ab[x].second; if(dep[a]<dep[b])swap(a,b); remove(root[color[a]],1,n,id[a],0); modify(root[color[a]],1,n,id[a],y); continue; } x++,y++; if(op=="N")update(root[color[x]],x,y); if(op=="SUM")cout<<qsum(root[color[x]],x,y)<<'\n'; if(op=="MAX")cout<<qmax(root[color[x]],x,y)<<'\n'; if(op=="MIN")cout<<qmin(root[color[x]],x,y)<<'\n'; } }
|