# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1061547 | anango | 선물상자 (IOI15_boxes) | C++17 | 0 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include <bits/stdc++.h>
using namespace std;
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(int N, int K, int L, int p[]) {
int k = K; int n = N;
vector<int> vals(N);
for (int i=0; i<N; i++) {
vals[i] = p[i];
}
sort(vals.begin(), vals.end());
int rem = N%K;
long long co1 = 0;
for (int i=0; i<=N-k; i+=k) {
//i through i+k-1
co1+=getdist(L,vals[i],vals[i+k-1]);
}
co1+=getdist(L,vals[N-rem-1],vals[N-1]);
return co1;
}
컴파일 시 표준 에러 (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... |