이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define fi first
#define se second
#define all(x) (x).begin(), (x).end()
using namespace std;
int32_t main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n, q, s, t;
cin >> n >> q >> s >> t;
vector<int> zx(n+5);
for (int i = 0; i <= n; i++) cin >> zx[i];
vector<int> fen(n+5, 0);
auto add = [&](int x, int val) {
for (;x<=n;x+=x&-x) fen[x] += val;
};
auto get = [&](int x) {
int res = 0;
for (;x>0;x-=x&-x) res += fen[x];
return res;
};
for (int i = 1; i <= n; i++) {
add(i, zx[i]);
add(i+1, -zx[i]);
}
int ans = 0;
for (int i = 0; i < n; i++) {
if (zx[i] < zx[i+1]) {
ans -= s*(zx[i+1] - zx[i]);
} else {
ans += t*(zx[i] - zx[i+1]);
}
}
while (q --> 0) {
int l, r, x;
cin >> l >> r >> x;
zx[l-1] = get(l-1);
zx[l] = get(l);
if (zx[l-1] < zx[l]) {
ans += s*(zx[l] - zx[l-1]);
} else {
ans -= t*(zx[l-1] - zx[l]);
}
if (r < n) {
zx[r] = get(r);
zx[r+1] = get(r+1);
if (zx[r] < zx[r+1]) {
ans += s*(zx[r+1] - zx[r]);
} else {
ans -= t*(zx[r] - zx[r+1]);
}
}
add(l, x);
add(r+1, -x);
zx[l] += x;
if (zx[l-1] < zx[l]) {
ans -= s*(zx[l] - zx[l-1]);
} else {
ans += t*(zx[l-1] - zx[l]);
}
if (r < n) {
if (l != r) zx[r] += x;
if (zx[r] < zx[r+1]) {
ans -= s*(zx[r+1] - zx[r]);
} else {
ans += t*(zx[r] - zx[r+1]);
}
}
cout << ans << '\n';
}
return 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... |