# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1082178 | raphael_heuchl | Boxes with souvenirs (IOI15_boxes) | C++14 | 2060 ms | 331900 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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);
}
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]);
people.push_back(0);
int root[N+2]{};
int next[N+2]{};
int kDist[N+2]{};
for (int i = 0; i <= N; ++i)
root[i] = dist(i),
next[i] = dist(i, i + 1);
for (int i = N; i >= 0; --i)
kDist[i] = kDist[i+1] + next[i] - (i+K-1 <= N+1 ? next[i+K-1] : 0);
long long best = INF;
for (int i = 1; i <= K; ++i)
{
long long sum = 0;
int pos = 0;
for (int j = 0; j < i; ++j)
{
sum += next[pos];
++pos;
}
while (pos <= N)
{
sum += root[pos];
sum += root[++pos];
sum += kDist[pos];
pos += K-1;
}
best = std::min(best, sum);
}
return best;
}
Compilation message (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... |