# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
668848 | Astrayt | 선물상자 (IOI15_boxes) | C++17 | 1 ms | 212 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define ll long long
#define pii pair<int,int>
#define All(x) x.begin(), x.end()
ll delivery(int N, int K, int L, int pos[]){
ll ans = 0;
vector<int> lp, rp;
for(int i = 0; i < N; ++i){
if(pos[i] != 0 && pos[i] <= L / 2) lp.pb(pos[i]);
else if(pos[i] > L / 2) rp.pb(pos[i]);
}
reverse(All(rp));
int cur = lp.size() + rp.size();
for(int i = cur; i > 0; ){
int k = min(K, i);
ll ml = 0, mr = 0;
for(; k; k--){
int l, r;
l = (lp.size() ? lp.back() : -1), r = (rp.size() ? rp.back() : L + 1);
if(ml == 0 && mr == 0){
if(l > (L - r)) ml = l, lp.pop_back();
else mr = (L - r), rp.pop_back();
}else if(ml && l >= (L - r)) lp.pop_back();
else if(mr && (L - r) >= l) rp.pop_back();
else{
if(r == L + 1 || (ml && 2 * (ml + L - r) < L)) break;
else if(r != L + 1){
mr = L - r;
i--;
rp.pop_back();
continue;
}
if(l == -1 || (mr && 2 * (mr + l) < L)) break;
else if(l != -1){
ml = l;
i--;
lp.pop_back();
continue;
}
}
i--;
}
ans += min(2ll * (ml + mr), 1ll * L);
}
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... |