# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
618925 | A_D | 선물상자 (IOI15_boxes) | C++14 | 1 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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]);
}
ans=min(ans,suf[0]);
return ans;
}
컴파일 시 표준 에러 (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... |