# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
621978 | Deepesson | 선물상자 (IOI15_boxes) | C++17 | 2088 ms | 187032 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
long long delivery(int N, int K, int L, int p[]);
using ll = long long;
ll inf = 1LL<<60LL;
long long delivery(int N, int K, int L, int p[]) {
ll dp[N+1];
for(auto&x:dp)x=inf;
dp[0]=0;
std::multiset<ll> setnob,setcob;
setnob.insert(0);
setcob.insert(2*L-2*p[0]);
std::deque<ll> dn,dc;
dn.push_back(0);
dc.push_back(2*L-2*p[0]);
for(int i=0;i!=N;++i){
ll custo_local = std::min((ll)L,(ll)2*p[i]);
dp[i+1]=std::min(dn.front()+custo_local,*setcob.begin());
if(dn.size()==K){
dn.pop_front();
}
if(dc.size()==K){
setcob.erase(setcob.find(dc.front()));
dc.pop_front();
}
ll custo_push = 2*L-2*p[i+1];
dn.push_back(dp[i+1]);
setcob.insert(dp[i+1]+custo_push);
dc.push_back(dp[i+1]+custo_push);
}
return dp[N];
}
컴파일 시 표준 에러 (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... |