이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<algorithm>
using namespace std;
typedef long long ll;
const int N = 2e5 + 8;
int n, q, s, t;
ll a[N], d[N];
ll get(ll x) {
if (x > 0)
return -x * s;
return -x * t;
}
int main() {
cin.tie(NULL)->sync_with_stdio(false);
cin >> n >> q >> s >> t;
for (int i = 0; i <= n; ++i) cin >> a[i];
for (int i = 1; i <= n; ++i) d[i] = a[i] - a[i - 1];
ll sum(0);
for (int i = 1; i <= n; ++i)
sum += get(d[i]);
int l, r, x; while (q--) {
cin >> l >> r >> x; // l and r+1
sum -= get(d[l]);
d[l] += x;
sum += get(d[l]);
if (r != n) {
sum -= get(d[r + 1]);
d[r + 1] -= x;
sum += get(d[r + 1]);
}
cout << sum << '\n';
}
}
/** /\_/\
* (= ._.)
* / >0 \>1
**/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |