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