# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
996515 | Alfraganus | 선물상자 (IOI15_boxes) | C++17 | 7 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 p[]) {
sort(p, p + n);
ll ans = 1e18;
auto get = [&](ll x){return min(x, l - x);};
vector<int> q;
for(int i = 0; i < n; i ++)
if(p[i] != 0)
q.push_back(p[i]);
n = (int)q.size();
// for(int i = 0; i < (1 << n); i ++){
// // cout << i << endl;
// ll mx = 0;
// deque<int> dq;
// for(int j = 0; j < n; j ++){
// if(i & (1 << j)){
// dq.push_back(q[j]);
// }
// }
// // for(auto x : dq)
// // cout << x << ' ';
// // cout << endl;
// while(dq.size() > 0){
// int sz = (int)dq.size();
// ll clock = dq.back() + get(dq.back());
// mx += clock;
// for(int j = 0; j < min(sz, k); j ++)
// dq.pop_back();
// }
// for(int j = 0; j < n; j ++){
// if((i & (1 << j)) == 0){
// dq.push_back(q[j]);
// }
// }
// // for(auto x : dq)
// // cout << x << ' ';
// // cout << endl;
// while(dq.size() > 0){
// int sz = (int)dq.size();
// ll clock = l - dq.front() + get(dq.front());
// mx += clock;
// for(int j = 0; j < min(sz, k); j ++)
// dq.pop_front();
// }
// // cout << mx << endl;
// ans = min(ans, mx);
// }
// return ans;
for(int i = 0; i <= n; i ++){
deque<int> dq;
for(int j = 0; j < i; j ++)
dq.push_back(q[j]);
// for(auto x : dq)
// cout << x << ' ';
// cout << endl;
ll mx = 0;
while(dq.size() > 0){
int sz = (int)dq.size();
ll clock = dq.back() + dq.back();
mx += clock;
for(int j = 0; j < min(sz, k); j ++)
dq.pop_back();
}
for(int j = i; j < n; j ++)
dq.push_back(q[j]);
while(dq.size() > 0){
int sz = (int)dq.size();
ll counterclock = l - dq.front() + l - dq.front();
mx += counterclock;
for(int j = 0; j < min(sz, k); j ++)
dq.pop_front();
}
// cout << i << ' ' << mx << endl;
ans = min(ans, mx);
}
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... |