# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
173239 | songc | 오렌지 출하 (JOI16_ho_t1) | C++14 | 51 ms | 1016 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<int,int> pii;
int N, M;
LL K;
LL D[20202], A[20202];
int main(){
scanf("%d %d %lld", &N, &M, &K);
for (int i=1; i<=N; i++){
scanf("%lld", &A[i]);
D[i] = 1234567890123456ll;
LL Max=A[i], Min=A[i];
for (int j=1; j<=M && i-j>=0; j++){
Max = max(Max, A[i-j+1]);
Min = min(Min, A[i-j+1]);
D[i] = min(D[i], D[i-j]+K+j*(Max-Min));
}
}
printf("%lld\n", D[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... |