이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "boxes.h"
using namespace std;
#define F first
#define S second
long long dpL[10000001] , dpR[10000001];
long long delivery(int N, int K, int L, int p[]) {
#define int long long
int ans = (int) 1e18;
int k = K;
int n = N;
int l = L;
for(int i = 0 ; i < N ;i ++){
dpL[i] = 2*p[i];
if(i >= K) dpL[i] = dpL[i-k] + 2*p[i]; // pick the last block and then solve for [0 , i-k]
}
for(int j = N - 1 ; j >= 0 ; j--){
int u = j + K ;
dpR[j] = 2*(L - p[j]);
if(u <= n - 1) dpR[j] = dpR[u] + 2*(L - p[j]);
}
#define pii pair<long long, long long>
deque<pii> dq;
int left = 1;
for(int i = 0 ; i < N - 1; i ++){
while(dq.size() && dq.front().second <= i) dq.pop_front();
left = max(left, i + 1);
while(left < N && k >= (left - i - 1)){
while(dq.size() && dq.back().first >= dpR[left]) dq.pop_back();
dq.push_back(pii(dpR[left] , left));
left++;
}
ans = min(ans , dpL[i] + dpR[i+1]);
ans = min(ans , dpL[i] + dq.front().F + L);
}
for(int i = 0 ; i < N ; i ++){
int X = n - i - 1;
if(X <= k){
ans = min(ans , dpL[i] + L);
}
int Y = i;
if(Y <= k) ans = min(ans , dpR[i] + L);
}
ans = min(ans , dpL[N - 1]);
ans = min(ans , dpR[0]);
if(K == N){
ans = min(ans ,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... |