Submission #679762

#TimeUsernameProblemLanguageResultExecution timeMemory
679762faribourzSjeckanje (COCI21_sjeckanje)C++14
0 / 110
1 ms340 KiB
// Only GOD // believe in yourself // Nemidam Del Be In Darde Donya! #include <bits/stdc++.h> using namespace std; typedef long long ll; #define int ll typedef long double ld; typedef pair<int, int> pii; #define F first #define S second #define pb push_back #define all(x) x.begin(), x.end() #define bit(x, y) ((x >> y)&1) #define sz(x) (int)x.size() #define kill(x) return cout << x << '\n', void() #define KILL(x) return cout << x << '\n', 0 const int N = 2e5+100; const int INF = 1e18+10; int a[N]; int n; int node[N << 2], node2[N << 2]; void upd(int x, int p){ p += n; node[p] += x; node2[p] += x; p >>= 1; for(;p;p>>=1) node[p] = min(node[p*2], node[p*2+1]), node2[p] = max(node2[p*2], node2[p*2+1]); } pii get(int l, int r){ l += n, r += n; int mx = -INF, mn = INF; while(l < r){ if(l & 1){ mx = max(mx, node2[l]), mn = min(mn, node[l++]); } if(r & 1) mx = max(mx, node2[--r]), mn = min(mn, node[r]); l >>= 1, r >>= 1; } return {mn, mx}; } void build(int id = 1){ if(id >= n) return; node[id] = min(node[id*2], node[id*2+1]); node2[id] = max(node[id*2], node[id*2+1]); } int32_t main(){ ios::sync_with_stdio(0);cin.tie(0);cout.tie(0); int q; cin >> n >> q; for(int i = 0; i < n; i++) cin >> a[i]; for(int i = 0; i < n; i++) node[i+n] = a[i], node2[i+n] = a[i]; build(); while(q--){ int l, r, x; cin >> l >> r >> x; for(int i = l-1; i < r; i++) upd(x, i), a[i]+=x; int ans =0 ; for(int i = 0; i < n-1; i++){ pii res = get(i, n); if(res.S - res.F == a[n-1] - a[i]){ ans += a[n-1] - a[i];break; } ans += abs(a[i+1] - a[i]); i++; } cout << ans << '\n'; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...