| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1061595 | anango | 선물상자 (IOI15_boxes) | C++17 | 703 ms | 323556 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include <bits/stdc++.h>
#define int long long
using namespace std;
int INF = 1LL<<62;
int getdist(int L, int l, int r) {
//go from sections l to r, with L
if (r<l) swap(l,r);
return min(min(2*r,(L-l)*2),L);
}
long long delivery(signed N, signed K, signed L, signed p[]) {
int k = K; int n = N;
int l = L;
vector<int> vals(N);
for (int i=0; i<N; i++) {
vals[i] = p[i];
}
sort(vals.begin(), vals.end());
int rem = N%K;
vector<int> pref(n+1,INF);
vector<int> suff(n+1,INF);
int co = INF;
pref[0] = 0;
for (int i=1; i<=n; i++) {
if (i<K) {
pref[i] = min(l,2*vals[i-1]);
}
else {
pref[i] = pref[i-K]+min(l,2*vals[i-1]);
}
}
suff[n] = 0;
for (int i=n-1; i>=0; i--) {
if (n-i<K) {
suff[i] = min(l,2*(l-vals[i]));
}
else {
suff[i] = suff[i+K]+min(l,2*(l-vals[i]));
}
}
for (int i=0; i<=n; i++) {
co=min(co,pref[i]+suff[i]);
}
//cout << co1 <<" " << co2 << " " << rem << " " << N <<" " << K << " " << L << endl;
return co;
}
컴파일 시 표준 에러 (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... | ||||
