# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1116394 | staszic_ojuz | Foehn Phenomena (JOI17_foehn_phenomena) | C++17 | 364 ms | 5948 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n, q, s, t;
cin >> n >> q >> s >> t;
vector<int64_t> amplitudes;
int64_t temps[n + 1] = {0};
int l, r, x, a = 0;
cin >> x;
a = x;
amplitudes.push_back(x);
for(int i = 1; i <= n; i++){
cin >> x;
amplitudes.push_back(x);
a = x;
}
temps[0] = 0;
for(int i = 1; i <= n; i++){
if(amplitudes[i] < 0){
temps[i] = temps[i - 1] - t * amplitudes[i];
}else{
temps[i] = temps[i - 1] - s * amplitudes[i];
}
}
if(s != t){
for(int k = 0; k < q; k++){
cin >> l >> r >> x;
for(int j = l; j <= r; j++){
amplitudes[j] += x;
}
temps[0] = 0;
for(int i = 1; i <= n; i++){
if(amplitudes[i - 1] >= amplitudes[i]){
temps[i] = temps[i - 1] + t * (amplitudes[i - 1] - amplitudes[i]);
}else{
temps[i] = temps[i - 1] - s * (amplitudes[i] - amplitudes[i - 1]);
}
}
cout << temps[n] << endl;
}
}else{
for(int k = 0; k < q; k++){
cin >> l >> r >> x;
temps[n] += x * t;
if(r < n){
temps[n] += x * t;
}
cout << temps[n] << endl;
}
}
}
컴파일 시 표준 에러 (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... |