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> using namespace std; typedef long long ll; #define NN 200010 #define N 800010 #define M 16000010 #define rep(i,l,r) for(int i=l;i<=r;++i) struct node { int x,r,c,o; } a[NN]; int h[NN],pos[NN],ls[N],rs[N]; int n,tot,m,rt,dfstime,siz,num; int e,head[M],last[M],p[N]; int dfn[N],low[N],sta[N],color[N]; int in[N],q[N]; bool v[N],ok[N]; vector<int> edge[N]; multiset<int> st[N]; bool cmp(const node &a,const node &b) { return a.x<b.x; }
void add(int x,int y) { head[++e]=y; last[e]=p[x]; p[x]=e; } void tarjan(int x) { int y; dfn[x]=low[x]=++dfstime; sta[++siz]=x; v[x]=true; for(int j=p[x];j;j=last[j]) if(!dfn[y=head[j]]) { tarjan(y); low[x]=min(low[x],low[y]); } else if(v[y]) low[x]=min(low[x],dfn[y]); if(low[x]==dfn[x]) { ++num; do { y=sta[siz--]; color[y]=num; v[y]=false; }while(y!=x); } } void build(int &x,int l,int r) { x=(l==r)?l:(++tot); if(l==r) return; int mid=l+r>>1; build(ls[x],l,mid); build(rs[x],mid+1,r); add(x,ls[x]); add(x,rs[x]); } void ins(int x,int l,int r,int L,int R,int y) { if(L<=l && r<=R) { add(y,x); return; } int mid=l+r>>1; if(L<=mid) ins(ls[x],l,mid,L,R,y); if(mid<R) ins(rs[x],mid+1,r,L,R,y); } int main() { #ifdef SK freopen("input.txt","r",stdin); #endif scanf("%d%d",&n,&m); rep(i,1,n) { scanf("%d%d%d",&a[i].x,&a[i].r,&a[i].c); a[i].o=i; } sort(a+1,a+n+1,cmp); rep(i,1,n) h[i]=a[i].x,pos[a[i].o]=i; tot=n; build(rt,1,n); rep(i,1,n) { int l=lower_bound(h+1,h+n+1,a[i].x-a[i].r)-h; int r=upper_bound(h+1,h+n+1,a[i].x+a[i].r)-h-1; ins(rt,1,n,l,r,i); } rep(i,1,tot) if(!dfn[i]) tarjan(i); rep(i,1,n) ok[color[i]]=true; for(int x=1;x<=tot;++x) { for(int j=p[x];j;j=last[j]) { int y=head[j]; int xx=color[x],yy=color[y]; if(xx==yy) continue; edge[xx].push_back(yy); ++in[yy]; } } int l=0,r=0; rep(i,1,num) if(!in[i] && !ok[i]) q[r++]=i; while(l!=r) { int x=q[l++]; for(auto &y:edge[x]) { --in[y]; if(!in[y] && !ok[y]) q[r++]=y; } }
rep(i,1,n) if(!in[color[i]]) st[color[i]].insert(a[i].c);
ll ans=0; rep(i,1,num) if(ok[i] && !in[i] && !st[i].empty()) ans+=*st[i].begin();
while(m--) { int x,y; scanf("%d%d",&x,&y); x=pos[x]; if(!in[color[x]]) { ans-=*st[color[x]].begin(); auto it=st[color[x]].find(a[x].c); st[color[x]].erase(it); a[x].c=y; st[color[x]].insert(a[x].c); ans+=*st[color[x]].begin(); } printf("%lld\n",ans); } return 0; }
|