이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
long long delivery(int n, int k, int l, int p[]){
vector<int>pos;
for(int i = 0; i < n; i++){
pos.pb(p[i]);
}
long long ans = 8e18;
if(k == n){
ans = l;
}
vector<long long>ldp(n + 10), rdp(n + 10);
for(int i = 1; i <= n; i++){
ldp[i] = ldp[max(i - k, 0)] + pos[i - 1] * 2;
}
for(int i = n; i >= 1; i--){
rdp[i] = rdp[min(i + k, n + 1)] + (l - pos[i - 1]) * 2;
}
for(int i = 0; i <= n; i++){
ans = min(ans, ldp[i] + rdp[i + 1]);
if(i + k + 1 < n + 10) ans = min(ans, ldp[i] + rdp[i + k + 1] + l);
}
return ans;
}
# | 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... |