이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "boxes.h"
#include <bits/stdc++.h>
using namespace std;
// trans rights
#define ll long long
#define f first
#define s second
#define endl '\n'
#define all(x) begin(x), end(x)
ll n,k,l;
ll dp1[10000069],dp2[10000069];
long long delivery(int N, int K, int Li, int p[]) {
n=N;k=K;l=Li;
for (ll i = 0; i < n; i++) {
if (i<k) {
dp1[i]=p[i];
}
else {
dp1[i]=dp1[i-k]+p[i];
}
}
for (ll i = n-1; ~i; i--) {
if (n<=k+i) {
dp2[i]=l-p[i];
}
else {
dp2[i]=l-p[i]+dp2[i+k];
}
}
ll ans=dp2[0];
for (ll i = 0; i < n; i++) {
ans=min(ans,dp1[i]+dp2[i+1]);
}
return ans*2;
}
# | 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... |