# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
136936 | arnold518 | 오렌지 출하 (JOI16_ho_t1) | C++14 | 68 ms | 888 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 2e4;
int N, M;
ll K, A[MAXN+10], dp[MAXN+10];
int main()
{
int i, j;
scanf("%d%d%lld", &N, &M, &K);
for(i=1; i<=N; i++) scanf("%lld", &A[i]);
for(i=1; i<=N; i++)
{
ll a=A[i], b=A[i], s=0;
dp[i]=numeric_limits<ll>::max();
for(j=i; j>=1 && i-j+1<=M; j--)
{
a=max(A[j], a);
b=min(A[j], b);
s++;
dp[i]=min(dp[i], dp[j-1]+K+s*(a-b));
}
}
printf("%lld", dp[N]);
}
컴파일 시 표준 에러 (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... |