이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include "bits/stdc++.h"
using namespace std;
int n, k, l;
long long delivery(int N, int K, int L, int p[]) {
n = N, k = K, l = L;
long long ans = 0;
if (k == 1) {
for (int i = 0; i < n; ++i) {
ans += min(p[i], (l - 1) - p[i] + 1) * 2;
}
}
else if (k == n) {
long long half_1 = 0, half_2 = 0;
for (int i = 0; i < n; ++i) {
if (p[i] <= l / 2) {
half_1 = p[i];
}
else {
if (!half_2) {
half_2 = p[i];
}
half_2 = min(half_2, (long long) p[i]);
}
}
ans = min((long long) l, 2 * half_1 + 2 * ((l - 1) - half_2 + 1));
}
return ans;
}
# | 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... |