이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include <vector>
#include <algorithm>
#include <map>
#include <iostream>
#define INF 1'000'000'000'000'000'000
std::vector<long long> people;
long long n, l, k;
long long pos = 0;
long long sum = 0;
long long dist(long long curr, long long next = 0)
{
long long d = std::abs(people[curr] - people[next]);
return std::min(d, l - d);
}
void forward()
{
sum += dist(pos, pos + 1);
++pos;
}
void fetch()
{
sum += dist(pos) + dist(pos + 1);
++pos;
}
long long delivery(int N, int K, int L, int p[])
{
n = N, k = K, l = L;
people.push_back(0);
for (int i = 0; i < N; ++i)
people.push_back(p[i]);
std::sort(people.begin(), people.end());
people.push_back(0);
long long best = INF;
for (int i = 1; i <= K; ++i)
{
sum = 0;
pos = 0;
for (int j = 0; j < i; ++j)
forward();
while (pos <= N)
{
fetch();
for (int j = 0; j < K-1; ++j)
{
if (pos > N)
break;
forward();
}
}
best = std::min(sum, best);
}
return best;
}
# | 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... |