# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
791743 | Josia | 선물상자 (IOI15_boxes) | C++17 | 1 ms | 212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include <bits/stdc++.h>
using namespace std;
long long delivery(int N, int K, int L, int p[]) {
int res = 0;
map<int, int> poss;
for (int i = 0; i<N; i++) {
poss[p[i]]++;
}
int cnt = 0;
int startPos = (*poss.begin()).first;
int dist;
while (poss.size()) {
dist = (*poss.begin()).first;
poss[(*poss.begin()).first]--;
if (poss[(*poss.begin()).first] == 0) poss.erase(poss.begin());
cnt++;
if (cnt == K) {
if (dist > L/2 && startPos < L/2) res += L;
else res += min(dist*2, (L-dist)*2);
startPos = (*poss.begin()).first;
cnt = 0;
}
}
if (dist > L/2 && startPos < L/2) res += L;
else res += min(dist*2, (L-dist)*2);
startPos = (*poss.begin()).first;
cnt = 0;
// cerr << res << "\n";
return res;
}
컴파일 시 표준 에러 (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... |