# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1086280 | RiverFlow | 선물상자 (IOI15_boxes) | C++14 | 2 ms | 2456 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include <bits/stdc++.h>
using namespace std;
const int N = (int)1e7 + 2;
int n, k, l;
long long f(int x) {
return l * ( (x / k) + (x % k != 0) );
}
long long suf[N], pre[N];
long long delivery(int N, int K, int L, int p[]) {
n = N, k = K, l = L;
long long ans = (long long)1e17;
ans = min(ans, f(n) );
// co le la tinh cost(i): chi phi de nhung gia tri dau
for(int i = 0; i < n; ++i) {
long long c = 2LL * p[i];
if (i - k >= 0) {
c += pre[i - k];
}
pre[i] = c;
}
for(int i = n - 1; i >= 0; --i) {
long long c = 2LL * (l - p[i]);
if (i + k < n) {
c += suf[i + k];
}
suf[i] = c;
}
for(int i = 0; i < n; ++i) {
ans = min(ans, pre[i] + f(n - i - 1));
ans = min(ans, suf[i] + f(i));
}
for(int i = 0; i < n; ++i)
for(int j = n - 1; j > i; --j) {
ans = min(ans, pre[i] + suf[j] + f(j - 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... |