이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define endl "\n"
using namespace std;
ll delivery(int n, int k, int L, int p[]) {
ll ans = 1e18;
ll pref[n], suf[n];
for (ll i = 0; i < n; i++)
pref[i] = (i - k < 0 ? 0 : pref[i - k]) + p[i];
for (ll i = n - 1; i >= 0; i--)
suf[i] = (i + k >= n ? 0 : suf[i + k]) + L - p[i];
for (ll i = -1; i < n; i++)
ans = min(ans, (i >= 0 ? pref[i] : 0) * 2 + (i + 1 < n ? suf[i + 1] : 0) * 2);
for (ll i = 0; i < n; i++)
if (L < min(p[i] * 2, (L - p[i]) * 2))
ans = min(ans, (i - 1 >= 0 ? pref[i - 1] : 0) * 2 + L + (i + k < n ? suf[i + k] : 0) * 2);
return ans;
}
// void solve()
// {
// }
// signed main()
// {
// ios_base::sync_with_stdio(0);
// cin.tie(0);
// ll t = 1;
// // precomp();
// // cin >> t;
// for (ll i = 1; i <= t; i++)
// solve();
// cerr << "\nTime elapsed: " << clock() * 1000.0 / CLOCKS_PER_SEC << " ms\n";
// }
# | 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... |