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 <bits/stdc++.h>
#include <iostream>
#include "boxes.h"
using namespace std;
#define rep(i,a,b) for(int i = a; i < b; i++)
#define pb push_back
#define lso(x) x&(-x)
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vvi;
int n, k, l;
vi p;
vi pos;
ll min(ll a, int b) {return min(a, (ll)b);}
ll kone() {
ll ans = 0;
rep(i,0,n) {
ans += 2*min(pos[i], l - pos[i]);
}
return ans;
}
ll kn() {
ll ans = l;
ans = min(ans, 2*(l - pos[0]));
ans = min(ans, 2*pos[n - 1]);
rep(i,0,n - 1) {
ans = min(ans, 2*pos[i] + 2*(l - pos[i + 1]));
}
return ans;
}
ll solve(vi& ps) {
int a = 0, b = min(n - 1, k - 1);
ll ans = 0;
int fhc = n / 2;
int shc = n / 2 + (n & 1);
while (ps[a] < n) {
if (ps[b] <= fhc) ans += 2*ps[b];
else if (ps[a] >= shc) ans += 2*(n - ps[a]);
else {
int low = a, high = b + 1, c;
while (high - low > 1) {
c = (high + low) / 2;
if (ps[c] >= shc) high = c;
else low = c;
}
ll cand1 = n, cand2 = 2*ps[c] + 2*(n - ps[c + 1]);
ans += min(cand1, cand2);
}
}
return ans;
}
ll get() {
ll ans = solve(pos);
vi ppp(n);
rep(i,0,n) ppp[i] = pos[n - 1 - i];
ans = min(ans, solve(ppp));
}
ll delivery(int N, int K, int L, int positions[]) {
n = N; k = K; l = L;
pos.resize(n); rep(i,0,n) pos[i] = positions[i];
if (k == 1) return kone();
else if (k == n) return kn();
else return get();
}
Compilation message (stderr)
boxes.cpp: In function 'll get()':
boxes.cpp:66:1: warning: no return statement in function returning non-void [-Wreturn-type]
66 | }
| ^
# | 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... |