이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
long long delivery(int N, int K, int L, int p[]) {
ll total=0;
int remaining=K;
int a=0,b=N-1;
int last=-1;
while(a<=b){
ll distA;
ll distB;
int selected=0;
if(remaining==K){
distA=min(p[a],L-p[a]);
distB=min(p[b],L-p[b]);
if(distA<=distB) selected=a;
else selected=b;
total+=(selected==a)? distA : distB;
}
else{
distA=min(abs(p[a]-p[last]),L-abs(p[a]-p[last]));
distB=min(abs(p[b]-p[last]),L-abs(p[b]-p[last]));
if(distA<=distB) selected=a;
else selected=b;
total+=(selected==a)? distA : distB;
}
remaining--;
if(remaining==0 || a==b){
distA=min(p[a],L-p[a]);
distB=min(p[b],L-p[b]);
total+=(selected==a)? distA : distB;
remaining=K;
}
last=selected;
if(selected==a) a++;
else b--;
}
return total;
}
# | 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... |