이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll n, s, q ,t, a[200005], ans = 0, l, r, x, temp;
int main() {
cin >> n >> q >> s >> t;
cin >> temp;
for(int i = 1; i <= n; i++) {
cin >> a[i];
a[i - 1] = temp - a[i];
temp = a[i];
ans += a[i - 1] * (a[i - 1] < 0 ? s : t);
}
for(int i = 0; i < q; i++) {
cin >> l >> r >> x;
l--;
ans -= a[l] * (a[l] < 0 ? s : t);
a[l] -= x;
ans += a[l] * (a[l] < 0 ? s : t);
if(r != n) {
ans -= a[r] * (a[r] < 0 ? s : t);
a[r] += x;
ans += a[r] * (a[r] < 0 ? s : t);
}
cout << ans << endl;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |