# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1061155 | codefox | 선물상자 (IOI15_boxes) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "boxes.h"
using namespace std;
#define int long long
int delivery(int N,int K,int L,int positions[])
{
deque<int> first;
deque<int> second;
for (int i = 0;i < N; i++)
{
if (positions[i]==0) continue;
if (positions[i]<=L/2) first.push_back(positions[i]);
else second.push_front(positions[i]);
}
int sol = 0;
while (first.size() >= K)
{
int t = K;
sol += first[K-1]*2;
while (t--) first.pop_front();
}
while (second.size() >= K)
{
int t = K;
sol += (L-second[second.size()-K])*2;
while (t--) second.pop_back();
}
if (first.size()==0 && second.size()==0) return sol;
if (first.size() == 0) return sol+(L-second[0])*2;
if (second.size()==0) return sol+first.back()*2;
int mn = 1e18;
if (first.size()+second.size()<=K) mn = L;
else
{
mn = min(mn, L+2*first[first.size()+second.size()-K]);
mn = min(mn, L+2*second[second.size()-(first.size()+second.size()-K)]);
}
mn = min(mn, 2*(first.back()+L-second.front()));
return sol+mn;
}