# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
678464 | hello_there_123 | 선물상자 (IOI15_boxes) | C++17 | 0 ms | 212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
//#include "boxes.h"
using namespace std;
#define ll long long
ll delivery(int n, int k, int l, int p[])
{
ll pre[k+3],pre2[k+3];
memset(pre,0,sizeof(pre));
memset(pre2,0,sizeof(pre2));
deque<ll>left,right;
for(int i=0;i<n;i++){
if(p[i]<=l/2) left.push_front(p[i]);
else{
right.push_back(l-p[i]);
}
}
for(int i=0;i<left.size();i++){
pre[(left.size()-i-1)%k]+=left[i];
}
for(int i=0;i<right.size();i++){
pre2[(right.size()-i-1)%k]+=right[i];
}
ll ans = 1e15;
for(int i=0;i<(n+k-1)/k;i++){
ll cur = i*l;
cur+=2*(pre[(left.size()-1)%k]+pre2[(right.size()-1)%k]);
ans = min(ans,cur);
for(int j=0;j<k;j++){
if(left.empty() && right.empty()) break;
if(left.empty()){
pre2[(right.size()-1)%k]-=right.front();
right.pop_front();
}
else if(right.empty()){
pre[(left.size()-1)%k]-=left.front();
left.pop_front();
}
else{
if(left.front()>right.front()){
pre[(left.size()-1)%k]-=left.front();
left.pop_front();
}
else{
pre2[(right.size()-1)%k]-=right.front();
right.pop_front();
}
}
}
}
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... |