이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
const int N = 200005;
int n , q , s , t , ans;
int a[N] , bit[N];
signed main(){
//freopen("1.inp","r",stdin);
cin >> n >> q >> s >> t;
n++;
for(int i = 1 ; i <= n ; ++ i)
cin >> a[i];
for(int i = 2; i <= n ; i ++){
bit[i] = a[i] - a[i - 1];
if (bit[i] >= 0) ans -= bit[i] * s;
else ans -= bit[i] * t;
}
while(q--){
int l , r , val;
cin >> l >> r >> val;
l++ ; r++;
if (bit[l] >= 0) ans += bit[l] * s;
else ans += bit[l] * t;
bit[l] += val;
if (bit[l] >= 0) ans -= bit[l] * s;
else ans -= bit[l] * t;
if (r != n) {
if (bit[r + 1] >= 0) ans += bit[r + 1] * s;
else ans += bit[r + 1] * t;
bit[r + 1] -= val;
if (bit[r + 1] >= 0) ans -= bit[r + 1] * s;
else ans -= bit[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... |