이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define maxn 200100
#define int long long
using namespace std;
struct BIT{
int v[maxn];
void update(int x, int val){
for(; x < maxn; x += x&-x)
v[x] += val;
}
void rangeupdate(int x, int y, int val){
update(x, val);
update(y+1, -val);
}
int query(int x){
if( x <= 0 ) return 0;
if( x >= maxn ) x = maxn-1;
int sum = 0;
for(; x > 0; x -= x&-x)
sum += v[x];
return sum;
}
} bit;
int n, q, s, t, res, anterior, atual, L, R, x;
int calc(int a, int b){
if(a<b) return (a-b)*s;
else return (a-b)*t;
}
main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> q >> s >> t;
n++;
for(int i = 1; i <= n; i++){
cin >> atual;
bit.rangeupdate(i, i, atual);
res += calc(anterior, atual);
anterior = atual;
}
for(int i = 1; i <= q; i++){
cin >> L >> R >> x;
L++; R++;
res -= calc(bit.query(L-1), bit.query(L));
if(R+1 <= n){
res -= calc(bit.query(R), bit.query(R+1));
}
bit.rangeupdate(L, R, x);
res += calc(bit.query(L-1), bit.query(L));
if(R+1 <= n){
res += calc(bit.query(R), bit.query(R+1));
}
cout << res << endl;
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
foehn_phenomena.cpp:35:6: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
main(){
^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |