Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- _____ _ _ _ _
- |_ _| |__ ___ / \ _ __ ___| |__ _ _| |
- | | | '_ \ / _ \ / _ \ | '_ \/ __| '_ \| | | | |
- | | | | | | __// ___ \| | | \__ \ | | | |_| | |
- |_| |_| |_|\___/_/ \_\_| |_|___/_| |_|\__,_|_|
- */
- #include<bits/stdc++.h>
- #include <ext/pb_ds/assoc_container.hpp>
- #include <ext/pb_ds/tree_policy.hpp>
- #define ll long long
- #define pb push_back
- #define ppb pop_back
- #define endl '\n'
- #define mii map<ll,ll>
- #define msi map<string,ll>
- #define mis map<ll, string>
- #define rep(i,a,b) for(ll i=a;i<b;i++)
- #define repr(i,a,b) for(ll i=b-1;i>=a;i--)
- #define trav(a, x) for(auto& a : x)
- #define pii pair<ll,ll>
- #define vi vector<ll>
- #define vii vector<pair<ll, ll>>
- #define vs vector<string>
- #define all(a) (a).begin(),(a).end()
- #define F first
- #define S second
- #define sz(x) (ll)x.size()
- #define hell 1000000007
- #define lbnd lower_bound
- #define ubnd upper_bound
- /* For Debugging */
- #define DEBUG cerr<<"/n>>>I'm Here<<</n"<<endl;
- #define display(x) trav(a,x) cout<<a<<" ";cout<<endl;
- #define what_is(x) cerr << #x << " is " << x << endl;
- std::mt19937_64 rng(std::chrono::steady_clock::now().time_since_epoch().count());
- #define ordered_set tree<ll, null_type,less<ll>, rb_tree_tag,tree_order_statistics_node_update>
- #define TIME cerr << "\nTime elapsed: " << setprecision(5) <<1000.0 * clock() / CLOCKS_PER_SEC << "ms\n";
- #define DECIMAL(n) cout << fixed ; cout << setprecision(n);
- #define FAST ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
- using namespace __gnu_pbds;
- using namespace std;
- #define PI 3.141592653589793
- #define N 200005
- vi a(N),seg(4*N);
- void build(ll cur,ll st,ll end)
- {
- if(st==end)
- {
- seg[cur]=a[st];
- return;
- }
- ll mid=(st+end)>>1;
- build(2*cur,st,mid);
- build(2*cur+1,mid+1,end);
- seg[cur]=seg[2*cur]+seg[2*cur+1]; /* 1-change here */
- }
- ll query(ll cur,ll st,ll end,ll l,ll r)
- {
- if(l<=st&&r>=end)
- return seg[cur];
- if(r<st||l>end)
- return 0; /* 2-change here */
- ll mid=(st+end)>>1;
- ll ans1=query(2*cur,st,mid,l,r);
- ll ans2=query(2*cur+1,mid+1,end,l,r);
- return (ans1+ans2); /* 3-change here */
- }
- void update(ll cur,ll st,ll end,ll pos,ll upd)
- {
- if(st==end)
- {
- a[pos]+=upd; /* 4-change here */
- seg[cur]=max(a[pos],0LL); /* 5-change here */
- return;
- }
- ll mid=(st+end)>>1;
- if(st<=pos&&pos<=mid)
- update(2*cur,st,mid,pos,upd);
- else
- update(2*cur+1,mid+1,end,pos,upd);
- seg[cur]=seg[2*cur]+seg[2*cur+1]; /* 6-change here */
- }
- void solve()
- {
- ll n;
- cin>>n;
- rep(i,1,n+1)
- {
- cin>>a[i];
- }
- build(1,1,n);
- ll q;
- cin>>q;
- map<pii,ll>ma;
- rep(i,0,q)
- {
- ll s,t,u;
- cin>>s>>t>>u;
- if(ma[{s,t}])
- {
- update(1,1,n,ma[{s,t}],1);
- }
- ma[{s,t}]=u;
- if(u!=0)
- update(1,1,n,ma[{s,t}],-1);
- cout<<query(1,1,n,1,n)<<endl;
- }
- return;
- }
- int main()
- {
- FAST
- int TESTS=1;
- // cin>>TESTS;
- while(TESTS--)
- {
- solve();
- }
- TIME
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment