This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define pb push_back
#define mp make_pair
typedef pair<long long,long long> ii;
long long n,q;
long long a[200005],sum,total,s,t,b[200005];
int main(){
cin.tie(0),cout.tie(0),ios::sync_with_stdio(0);
cin >> n >> q >> s >> t;
for(int i = 0;i<=n;i++)
cin >> a[i];
long long ans = 0;
for(int i = 1;i<=n;i++){
b[i] = a[i] - a[i - 1];
if (b[i] >= 0) total -= b[i] * s;
else total -= b[i] * t;
}
while(q--){
long long l,r;
long long x;
cin >> l >> r >> x;
if (b[l] >= 0) total += b[l] * s;
else total += b[l] * t;
b[l] += x;
if (b[l] >= 0) total -= b[l] * s;
else total -= b[l] * t;
if (r < n) {
if (b[r + 1] >= 0) total += b[r + 1] * s;
else total += b[r + 1] * t;
b[r + 1] -= x;
if (b[r + 1] >= 0) total -= b[r + 1] * s;
else total -= b[r + 1] * t;
}
cout<<total<<"\n";
}
}
Compilation message (stderr)
foehn_phenomena.cpp: In function 'int main()':
foehn_phenomena.cpp:21:15: warning: unused variable 'ans' [-Wunused-variable]
long long ans = 0;
^~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |