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