# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
365000 | tushar_2658 | Foehn Phenomena (JOI17_foehn_phenomena) | C++14 | 158 ms | 7404 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
using namespace std;
const int maxn = 200005;
using ll = long long;
ll a[maxn], diff[maxn];
ll S, T;
int main(int argc, char const *argv[])
{
ios::sync_with_stdio(false);
cin.tie(0);
int n, m;
cin >> n >> m >> S >> T;
ll sum = 0;
ll ans = 0;
for(int i = 0; i <= n; ++i){
cin >> a[i];
if(i){
diff[i] = a[i] - a[i - 1];
if(diff[i] >= 0){
ans += diff[i] * (-S);
}else {
ans += (-diff[i]) * T;
}
}
}
while(m--){
int l, r;
ll x;
cin >> l >> r >> x;
if(diff[l] >= 0){
ans -= (diff[l] * (-S));
}else {
ans -= (-diff[l] * T);
}
if(r < n){
if(diff[r + 1] >= 0){
ans -= (diff[r + 1] * (-S));
}else {
ans -= (-diff[r + 1] * T);
}
}
diff[l] += x;
diff[r + 1] -= x;
if(diff[l] >= 0){
ans += (diff[l] * (-S));
}else {
ans += (-diff[l] * T);
}
if(r < n){
if(diff[r + 1] >= 0){
ans += (diff[r + 1] * (-S));
}else {
ans += (-diff[r + 1] * T);
}
}
cout << ans << '\n';
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |