이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "boxes.h"
using namespace std;
long long delivery(int N, int K, int L, int p[]) {
int cnt = 1, mid = (L + 1) >> 1;
long long ans = 0;
int i = 0; while(i < N && p[i] == 0) i++;
if(i == N) return 0;
int st = p[i];
for(; i < N; i++){
if(cnt > K){
int ed = p[i - 1]; ans += (ed - st) * 1ll;
if(st < mid) ans += (st * 1ll);
else ans += ((L - st) * 1ll);
if(ed < mid) ans += (ed * 1ll);
else ans += ((L - ed) * 1ll);
// printf("ans = %lld at %d\n", ans, i);
cnt = 1; st = p[i];
}
cnt++;
}
int ed = p[N - 1]; ans += (ed - st) * 1ll; // printf("%d %d\n", st, ed);
if(st < mid) ans += (st * 1ll); else ans += ((L - st) * 1ll);
if(ed < mid) ans += (ed * 1ll); else ans += ((L - ed) * 1ll);
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... |