# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
624894 | brucecccccc | 선물상자 (IOI15_boxes) | C++14 | 2074 ms | 19948 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAXN = 1e7+5;
ll f[MAXN], b[MAXN];
ll delivery(int N, int K, int L, int p[]) {
int i = 0;
while (i < N && f[i] == 0) {
f[i] = p[i] + min(p[i], L - p[i]);
for (int j = i + K; j < N; j += K) {
f[j] = f[j-K] + p[j] + min(p[j], L - p[j]);
}
i++;
}
i = N-1;
while (i >= 0 && b[i] == 0) {
b[i] = L - p[i] + min(p[i], L - p[i]);
for (int j = i - K; j >= 0; j -= K) {
b[j] = b[j+K] + L - p[j] + min(p[j], L - p[j]);
}
i--;
}
ll ans = min(f[N-1], b[0]);
for (int i = 0; i < N - 1; i++) {
ans = min(ans, f[i] + b[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... |