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