# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
519586 | silverfish | 선물상자 (IOI15_boxes) | C++17 | 2 ms | 216 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "boxes.h"
using namespace std;
using ll = long long;
const int N = 1000007;
ll dp[N], p[N];
long long delivery(int n, int k, int L, int p[]) {
ll l = L;
fill(dp, dp+n, 1LL*n*l);
dp[0] = 0;
for(int i = 1; i <= n; ++i){
ll mn = min(l, 2LL*p[i-1]);
for(int j = i; j > max(i-k, 0); --j){
ll cmn = min(mn, 2LL*(l-p[j-1]));
dp[i] = min(dp[i], dp[j-1] + cmn);
}
}
return 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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |