# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1061161 | codefox | 선물상자 (IOI15_boxes) | C++14 | 1 ms | 600 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 positions[])
{
deque<ll> first;
deque<ll> 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]);
}
ll 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[K-1])*2;
while (t--) second.pop_front();
}
if (first.size()==0 && second.size()==0) return sol;
if (first.size() == 0) return sol+(L-second.back())*2;
if (second.size()==0) return sol+first.back()*2;
ll 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[first.size()+second.size()-K]);
}
mn = min(mn, 2*(first.back()+L-second.back()));
return sol+mn;
}
컴파일 시 표준 에러 (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... |