# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1100962 | akzytr | Stove (JOI18_stove) | C++17 | 1054 ms | 2140 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
template <typename T> using ve = vector<T>;
typedef long long ll;
#define pb push_back
#define fi first
#define se second
#define endl '\n'
int main() {
int N, K;
cin >> N >> K;
ve<pair<ll, ll>> times(N);
for(ll i = 0; i < N; i++) {
scanf("%lld", ×[i].fi);
times[i].se = 1;
}
ll mi_left[K + 1] = {};
ll mi_left2[K + 1] = {};
bool tk = false;
const ll MXN = 1e16;
for(ll i = 0; i <= K; i++) {
mi_left[i] = 0;
mi_left2[i] = MXN;
}
for(ll i = N - 1; i >= 0; i--) {
if(i == N - 1 || times[i].fi + 1 != times[i + 1].fi) {
for(ll left = K; left >= 0; left--) {
mi_left2[left] = min(mi_left2[left], (tk == 0 ? 0 : (ll)MXN) + times[i].fi + 1);
if(left == 0) {
break;
}
mi_left2[left] = min(mi_left2[left], mi_left[left] + times[i].fi + 1);
}
}
tk = 1;
for(ll left = K; left >= 0; left--) {
mi_left2[left] = min(mi_left2[left], (ll)MXN + times[i].fi);
if(left == 0) {
break;
}
mi_left[left] = min((ll)MXN, mi_left2[left - 1] - times[i].fi);
}
}
cout << mi_left[K] << endl;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |