# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
153886 | mhy908 | Foehn Phenomena (JOI17_foehn_phenomena) | C++14 | 193 ms | 13124 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define F first
#define S second
#define pb push_back
#define mp make_pair
#define llinf 8987654321987654321
#define inf 1987654321
using namespace std;
typedef long long LL;
typedef pair<int, int> pii;
typedef pair<LL, LL> pll;
int n, q;
LL s, t;
LL arr[200010], diff[200010];
LL num;
int main()
{
scanf("%d%d%lld%lld", &n, &q, &s, &t);
for(int i=0; i<=n; i++){
scanf("%lld", &arr[i]);
}
for(int i=0; i<n; i++){
if(arr[i]<arr[i+1])num-=s*(arr[i+1]-arr[i]);
else num-=t*(arr[i+1]-arr[i]);
diff[i]=arr[i+1]-arr[i];
}
for(int i=1; i<=q; i++){
int a, b;
LL c;
scanf("%d %d %lld", &a, &b, &c);
num+=diff[a-1]>0?diff[a-1]*s:diff[a-1]*t;
diff[a-1]+=c;
num-=diff[a-1]>0?diff[a-1]*s:diff[a-1]*t;
if(b!=n){
num+=diff[b]>0?diff[b]*s:diff[b]*t;
diff[b]-=c;
num-=diff[b]>0?diff[b]*s:diff[b]*t;
}
printf("%lld\n", num);
}
}
컴파일 시 표준 에러 (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... |