# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
933799 | raul2008487 | 선물상자 (IOI15_boxes) | C++17 | 0 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "boxes.h"
#define ll int
#define in insert
#define pb push_back
#define vl vector<ll>
#define fi first
#define se second
#define all(v) v.begin(), v.end()
#define endl "\n"
using namespace std;
const ll inf = 1000000000000000000;
long long delivery(int N, int K, int L, int p[]) {
ll n = N, k = K, ans = inf, i, j;
vl dpp(n + 2), dps(n + 2);
dpp[0] = dps[n + 1] = 0;
for(i = 1; i <= n; i++){
ll pr = max(i - k, 0);
dpp[i] = dpp[pr] + p[i - 1] + min(L - p[i - 1], p[i - 1]);
}
for(i = n; i > 0; i--){
ll nxt = min(i + k, n + 1);
dps[i] = dps[nxt] + (L - p[i - 1]) + min(L - p[i - 1], p[i - 1]);
}
for(i = 0; i <= n; i++){
ans = min(ans, (dpp[i] + dps[i + 1]));
}
return ans;
}
컴파일 시 표준 에러 (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... |