이 제출은 이전 버전의 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[]) {
return min(p[0],L-p[0])+min(p[N-1],L-p[N-1])+abs(p[0]-p[N-1]);
//~ 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);
}
컴파일 시 표준 에러 (stderr) 메시지
boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:17:31: warning: unused parameter 'K' [-Wunused-parameter]
long long delivery(int N, int K, int L, int p[]) {
^
# | 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... |