//泥の分際で私だけの大切を奪おうだなん #include<bits/stdc++.h> #define ll long long using namespace std; inline ll read(){ ll s=0,w=1; char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();} while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar(); return s*w; } set<pair<ll,int>> st[600003]; vector<int> vec[600003]; int ans[200003]; struct node { int fa,s[2],tag,v; ll mn[2],sum,smn; }a[600003]; bool isrt(int x) {return a[a[x].fa].s[0]!=x&&a[a[x].fa].s[1]!=x;} void update(int x) { a[x].sum=a[a[x].s[0]].sum+a[a[x].s[1]].sum+a[x].v; for(int i=0; i<2; ++i) a[x].mn[i]=min(a[a[x].s[i]].mn[i],a[a[x].s[i]].sum+ min(a[a[x].s[i^1]].mn[i],a[x].smn)+a[x].v); } void push_down(int x) { if(a[x].tag) a[a[x].s[0]].tag^=1,a[a[x].s[1]].tag^=1, swap(a[a[x].s[0]].s[0],a[a[x].s[0]].s[1]), swap(a[a[x].s[1]].s[0],a[a[x].s[1]].s[1]), swap(a[a[x].s[0]].mn[0],a[a[x].s[0]].mn[1]), swap(a[a[x].s[1]].mn[0],a[a[x].s[1]].mn[1]), a[x].tag=0; return ; } void rotate(int x) { int y=a[x].fa,z=a[y].fa,id=(a[y].s[1]==x); a[y].s[id]=a[x].s[!id], a[a[x].s[!id]].fa=y,a[x].s[!id]=y; if(!isrt(y)) id=(a[z].s[1]==y),a[z].s[id]=x; a[x].fa=z,a[y].fa=x, update(y),update(x); return ; } void splay(int t) { static int stk[1000003],ssz; stk[ssz=1]=t; for(int x=t; !isrt(x); x=a[x].fa) stk[++ssz]=a[x].fa; while(ssz) push_down(stk[ssz--]); for(int x=t,y,z; !isrt(x); rotate(x)) { y=a[x].fa,z=a[y].fa; if(!isrt(y)) rotate(((a[y].s[0]==x)^(a[z].s[0]==y))?x:y); } return ; } void access(int x) { for(int y=0,RT=0; x; y=x,x=a[x].fa) { // printf("access %d\n",x);fflush(stdout); int nRT=x; while(!isrt(nRT)) nRT=a[nRT].fa; splay(x); if(y) { auto it=st[x].find({a[y].mn[0],RT}); if(it!=st[x].end()) st[x].erase(it); } if(a[x].s[1]) st[x].insert({a[a[x].s[1]].mn[0],a[x].s[1]}); a[x].s[1]=y,a[x].smn=st[x].begin()->first; if(!vec[x].empty()) a[x].smn=0; RT=nRT,update(x); } } void makert(int x) {access(x),splay(x),swap(a[x].s[0],a[x].s[1]), swap(a[x].mn[0],a[x].mn[1]),a[x].tag^=1;} int findrt(int x) { access(x),splay(x); while(a[x].s[0]) push_down(x),x=a[x].s[0]; splay(x); return x; } void split(int x,int y) { makert(x),access(y),splay(y); } void link(int x,int y) { // printf("link %d %d\n",x,y); makert(x),makert(y); st[x].insert({a[y].mn[0],y}); a[y].fa=x,a[x].smn=st[x].begin()->first; if(!vec[x].empty()) a[x].smn=0; update(x); } void cut(int x,int y) { makert(x); if(findrt(y)==x&&a[y].fa==x&&!a[y].s[0]) { if(isrt(y)) { st[x].erase({a[y].mn[0],y}); if(vec[x].empty()) a[x].smn=st[x].begin()->first; } else a[x].s[1]=0; a[y].fa=0,update(x); } } struct HaitangSuki{ll o,x,y,z;}op[200003]; signed main() { int n=read(),m=read(),q=read(),qc=0; for(int i=0; i<=n+m+q; ++i) st[i].insert({1e18,0}); for(int i=0; i<=n+m+q; ++i) a[i].smn=a[i].mn[0]=a[i].mn[1]=1e18; map<pair<int,int>,int> E; for(int i=1,u,v; i<=m; ++i) { u=read(),v=read(); if(u>v) swap(u,v); E[{u,v}]=read(); } for(ll i=1,o=0,x=0,y=0,z=0; i<=q; ++i) { o=read(),x=read(); if(o==1) { y=read(),z=read(); if(x>y) swap(x,y); E[{x,y}]=z; } if(o==2) { y=read(); if(x>y) swap(x,y); z=E[{x,y}],E.erase({x,y}); } if(o==3) y=read(),z=read(); if(o==4) y=++qc; op[i]=(HaitangSuki){o,x,y,z}; } for(auto &[e,w]:E) { auto [u,v]=e; a[++n].v=w,link(u,n),link(v,w=n); } for(ll i=q,o,x,y,z; i>=1; --i) { o=op[i].o,x=op[i].x,y=op[i].y,z=op[i].z; if(o==1) z=E[{x,y}],cut(x,z),cut(y,z); if(o==2) a[++n].v=z,link(x,n),link(y,E[{x,y}]=n); if(o==3) { ll tx=x,ty=y; while(1) { x=tx,y=ty,makert(x); if(a[x].mn[0]>y) break; // puts("start");fflush(stdout); while(1) { // printf("%d\n",x);fflush(stdout); // assert(a[x].mn[0]<=y); // assert(x!=0); push_down(x); if(a[x].smn+a[x].v+a[a[x].s[0]].sum<=y) { if(!vec[x].empty()) { makert(x); for(int id:vec[x]) ans[id]=z; a[x].smn=st[x].begin()->first, vec[x].clear(),update(x); break; } else { y-=(a[x].v+a[a[x].s[0]].sum); int nw=st[x].begin()->second; // assert(nw!=0); // if(a[nw].fa!=x) // printf("%d expected %d found %d\n",nw,a[nw].fa,x); // assert(a[nw].fa==x); // assert(st[x].begin()->first==a[x].smn); st[x].erase(st[x].begin()),x=nw; } } else if(a[a[x].s[0]].mn[0]<=y) x=a[x].s[0]; else y-=(a[x].v+a[a[x].s[0]].sum),x=a[x].s[1]; } } } if(o==4) { if(vec[x].empty()) makert(x),a[x].smn=0,update(x); vec[x].push_back(y); } } for(int i=1; i<=qc; ++i) printf("%d\n",ans[i]); return 0; }
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 | //泥の分際で私だけの大切を奪おうだなん #include<bits/stdc++.h> #define ll long long using namespace std; inline ll read(){ ll s=0,w=1; char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')w=-1;ch=getchar();} while(ch>='0'&&ch<='9') s=s*10+ch-'0',ch=getchar(); return s*w; } set<pair<ll,int>> st[600003]; vector<int> vec[600003]; int ans[200003]; struct node { int fa,s[2],tag,v; ll mn[2],sum,smn; }a[600003]; bool isrt(int x) {return a[a[x].fa].s[0]!=x&&a[a[x].fa].s[1]!=x;} void update(int x) { a[x].sum=a[a[x].s[0]].sum+a[a[x].s[1]].sum+a[x].v; for(int i=0; i<2; ++i) a[x].mn[i]=min(a[a[x].s[i]].mn[i],a[a[x].s[i]].sum+ min(a[a[x].s[i^1]].mn[i],a[x].smn)+a[x].v); } void push_down(int x) { if(a[x].tag) a[a[x].s[0]].tag^=1,a[a[x].s[1]].tag^=1, swap(a[a[x].s[0]].s[0],a[a[x].s[0]].s[1]), swap(a[a[x].s[1]].s[0],a[a[x].s[1]].s[1]), swap(a[a[x].s[0]].mn[0],a[a[x].s[0]].mn[1]), swap(a[a[x].s[1]].mn[0],a[a[x].s[1]].mn[1]), a[x].tag=0; return ; } void rotate(int x) { int y=a[x].fa,z=a[y].fa,id=(a[y].s[1]==x); a[y].s[id]=a[x].s[!id], a[a[x].s[!id]].fa=y,a[x].s[!id]=y; if(!isrt(y)) id=(a[z].s[1]==y),a[z].s[id]=x; a[x].fa=z,a[y].fa=x, update(y),update(x); return ; } void splay(int t) { static int stk[1000003],ssz; stk[ssz=1]=t; for(int x=t; !isrt(x); x=a[x].fa) stk[++ssz]=a[x].fa; while(ssz) push_down(stk[ssz--]); for(int x=t,y,z; !isrt(x); rotate(x)) { y=a[x].fa,z=a[y].fa; if(!isrt(y)) rotate(((a[y].s[0]==x)^(a[z].s[0]==y))?x:y); } return ; } void access(int x) { for(int y=0,RT=0; x; y=x,x=a[x].fa) { // printf("access %d\n",x);fflush(stdout); int nRT=x; while(!isrt(nRT)) nRT=a[nRT].fa; splay(x); if(y) { auto it=st[x].find({a[y].mn[0],RT}); if(it!=st[x].end()) st[x].erase(it); } if(a[x].s[1]) st[x].insert({a[a[x].s[1]].mn[0],a[x].s[1]}); a[x].s[1]=y,a[x].smn=st[x].begin()->first; if(!vec[x].empty()) a[x].smn=0; RT=nRT,update(x); } } void makert(int x) {access(x),splay(x),swap(a[x].s[0],a[x].s[1]), swap(a[x].mn[0],a[x].mn[1]),a[x].tag^=1;} int findrt(int x) { access(x),splay(x); while(a[x].s[0]) push_down(x),x=a[x].s[0]; splay(x); return x; } void split(int x,int y) { makert(x),access(y),splay(y); } void link(int x,int y) { // printf("link %d %d\n",x,y); makert(x),makert(y); st[x].insert({a[y].mn[0],y}); a[y].fa=x,a[x].smn=st[x].begin()->first; if(!vec[x].empty()) a[x].smn=0; update(x); } void cut(int x,int y) { makert(x); if(findrt(y)==x&&a[y].fa==x&&!a[y].s[0]) { if(isrt(y)) { st[x].erase({a[y].mn[0],y}); if(vec[x].empty()) a[x].smn=st[x].begin()->first; } else a[x].s[1]=0; a[y].fa=0,update(x); } } struct HaitangSuki{ll o,x,y,z;}op[200003]; signed main() { int n=read(),m=read(),q=read(),qc=0; for(int i=0; i<=n+m+q; ++i) st[i].insert({1e18,0}); for(int i=0; i<=n+m+q; ++i) a[i].smn=a[i].mn[0]=a[i].mn[1]=1e18; map<pair<int,int>,int> E; for(int i=1,u,v; i<=m; ++i) { u=read(),v=read(); if(u>v) swap(u,v); E[{u,v}]=read(); } for(ll i=1,o=0,x=0,y=0,z=0; i<=q; ++i) { o=read(),x=read(); if(o==1) { y=read(),z=read(); if(x>y) swap(x,y); E[{x,y}]=z; } if(o==2) { y=read(); if(x>y) swap(x,y); z=E[{x,y}],E.erase({x,y}); } if(o==3) y=read(),z=read(); if(o==4) y=++qc; op[i]=(HaitangSuki){o,x,y,z}; } for(auto &[e,w]:E) { auto [u,v]=e; a[++n].v=w,link(u,n),link(v,w=n); } for(ll i=q,o,x,y,z; i>=1; --i) { o=op[i].o,x=op[i].x,y=op[i].y,z=op[i].z; if(o==1) z=E[{x,y}],cut(x,z),cut(y,z); if(o==2) a[++n].v=z,link(x,n),link(y,E[{x,y}]=n); if(o==3) { ll tx=x,ty=y; while(1) { x=tx,y=ty,makert(x); if(a[x].mn[0]>y) break; // puts("start");fflush(stdout); while(1) { // printf("%d\n",x);fflush(stdout); // assert(a[x].mn[0]<=y); // assert(x!=0); push_down(x); if(a[x].smn+a[x].v+a[a[x].s[0]].sum<=y) { if(!vec[x].empty()) { makert(x); for(int id:vec[x]) ans[id]=z; a[x].smn=st[x].begin()->first, vec[x].clear(),update(x); break; } else { y-=(a[x].v+a[a[x].s[0]].sum); int nw=st[x].begin()->second; // assert(nw!=0); // if(a[nw].fa!=x) // printf("%d expected %d found %d\n",nw,a[nw].fa,x); // assert(a[nw].fa==x); // assert(st[x].begin()->first==a[x].smn); st[x].erase(st[x].begin()),x=nw; } } else if(a[a[x].s[0]].mn[0]<=y) x=a[x].s[0]; else y-=(a[x].v+a[a[x].s[0]].sum),x=a[x].s[1]; } } } if(o==4) { if(vec[x].empty()) makert(x),a[x].smn=0,update(x); vec[x].push_back(y); } } for(int i=1; i<=qc; ++i) printf("%d\n",ans[i]); return 0; } |