# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
519614 | silverfish | 선물상자 (IOI15_boxes) | C++17 | 2059 ms | 213600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "boxes.h"
using namespace std;
using ll = long long;
const int N = 10000007;
ll dp[N], s[N];
set<array<ll,2>> st;
inline ll mn(ll a, ll b){
return (a < b ? a : b);
}
long long delivery(int n, int k, int L, int p[]) {
ll l = L;
fill(dp, dp+N, 1e18+10);
// sort(p, p+n);
for(int i = 0; i < n; ++i){
s[i] = (i ? dp[i-1] : 0) + mn(2LL*(l-p[i]), l);
st.insert({s[i], i});
if(i-k >= 0) st.erase(st.find({s[i-k], i-k}));
auto it = st.begin();
int pos = (*it)[1];
dp[i] = dp[pos-1]+mn(l, mn(2LL*p[i], 2LL*(l-p[pos])));
}
return dp[n-1];
}
컴파일 시 표준 에러 (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... |