이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include <bits/stdc++.h>
#define rep(i,n)for(int i=0;i<(n);i++)
using namespace std;
typedef long long ll;
ll solve(int N,int K,int L,int p[],int s){
ll res=0;
while(s<N){
int g=min(N-1,s+K-1);
res+=min(p[s],L-p[s]);res+=min(p[g],L-p[g]);res+=abs(p[s]-p[g]);
s=g+1;
}
return res;
}
long long delivery(int N, int K, int L, int p[]) {
int s=0;
while(s<N&&p[s]==0)s++;
ll res1=solve(N,K,L,p,s);
return res1;
for(int i=s;i<N;i++)p[i]=L-p[i];
reverse(p+s,p+N);
ll res2=solve(N,K,L,p,s);
return min(res1,res2);
}
# | 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... |