이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAX_N = 4e3 + 5, MAX_K = 4e3 + 5, INF = 1e9;
int n, k, m;
array<int, MAX_N> t;
int n_keys;
array<int, MAX_N> key, aft;
void precomp() {
for (int i = 1; i <= n; i++)
if (t[i] <= m) n_keys++, key[n_keys] = i;
key[n_keys + 1] = n + 1;
// Speed up
for (int i = 1; i <= n_keys; i++) {
aft[i] = n_keys + 1;
for (int j = i + 1; j <= n_keys; j++)
if (t[key[j]] - key[j] < t[key[i]] - key[i]) { aft[i] = j; break; }
// cout << i << ": " << aft[i] << endl;
}
}
array<array<int, MAX_K>, MAX_N> dp;
void comp() {
for (int i = n_keys; i >= 1; i--) {
for (int c = 0; c <= k; c++) {
int leave = dp[aft[i]][c] + min(m - t[key[i]] + 1, key[aft[i]] - key[i]);
int take = (c == 0) ? INF : dp[i + 1][c - 1] + 1;
dp[i][c] = min(leave, take);
if (c != 0) {
for (int j = i + 1; j <= aft[i] - 1; j++)
dp[i][c] = min(dp[i][c], dp[j + 1][c - 1] + key[j] - key[i] + 1);
}
// cout << i << " " << c << ": " << dp[i][c] << endl;
}
}
}
int main() {
// freopen("prison.in", "r", stdin);
cin >> n >> k >> m;
for (int i = 1; i <= n; i++) cin >> t[i];
precomp();
comp();
int ans = dp[1][k];
cout << ans << '\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... |