# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
618922 | A_D | Boxes with souvenirs (IOI15_boxes) | C++14 | 1 ms | 340 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 <bits/stdc++.h>
using namespace std;
const int N=1e7+10;
long long pre[N];
long long suf[N];
long long delivery(int N, int K, int L, int p[]) {
long long ans=1e18;
long long me=0,cur=0,lst=0;
for(int i=0;i<N;i++){
long long h=p[i];
me+=h-lst;
cur++;
pre[i]=me+min(h,L-h);
if(cur==K){
me+=min(h,L-h);
cur=0;
me+=min(h,L-h);
}
lst=p[i];
}
ans=pre[N-1];
me=0,cur=0,lst=L;
for(int i=N-1;i>=0;i--){
long long h=p[i];
me+=abs(h-lst);
cur++;
suf[i]=me+min(h,L-h);
if(cur==K){
me+=min(h,L-h);
cur=0;
me+=min(h,L-h);
}
lst=p[i];
}
for(int i=0;i<N-1;i++){
ans=min(ans,pre[i]+suf[i+1]);
}
return ans;
}
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... |