# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
450343 | JovanB | 선물상자 (IOI15_boxes) | C++17 | 671 ms | 386072 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#include "boxes.h"
ll niz1[10000005];
ll dp1[10000005];
ll niz2[10000005];
ll dp2[10000005];
ll n;
long long delivery(int N, int K, int L, int p[]){
ll l = L;
ll k = K;
n = N;
for(ll i=0; i<N; i++){
if(!p[i]) continue;
niz1[i+1] = p[i];
niz2[i+1] = p[i];
}
reverse(niz2+1, niz2+n+1);
ll cost = 0;
ll lcost = 0;
for(ll i=n; i>=1; i-=k){
lcost += 2*niz1[i];
}
cost = lcost;
for(int i=1; i<=n; i++){
if(i-k >= 0) dp1[i] += dp1[i-k];
dp1[i] += 2*niz1[i];
}
for(int i=1; i<=n; i++){
if(i-k >= 0) dp2[i] += dp2[i-k];
dp2[i] += 2*(l-niz2[i]);
}
for(int i=0; i<=n; i++){
int ost = n-k-i;
if(ost >= 0) cost = min(cost, l+dp1[i]+dp2[ost]);
cost = min(cost, dp1[i]+dp2[n-i]);
}
return min(cost, lcost);
}
컴파일 시 표준 에러 (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... |