# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
408990 | ly20 | The short shank; Redemption (BOI21_prison) | C++17 | 1 ms | 332 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;
const int MAXN = 4123;
int dp[MAXN][MAXN], dir[MAXN][MAXN];
int v[MAXN], mx[MAXN];
int main() {
int n, d, t;
scanf("%d %d %d", &n, &d, &t);
for(int i = 1; i <= n; i++) {
scanf("%d", &v[i]);
mx[i] = 0;
}
for(int i = 1; i <= n; i++) {
for(int j = 0; j <= i; j++) {
mx[j] = max(mx[j], j + t - v[j]);
}
for(int j = 0; j <= n; j++) {
//coloco:
if(v[i] <= t) {
if(j > 0) dp[i][j] = dp[i - 1][j - 1];
else {
dp[i][j] = MAXN;
//printf("%d %d\n", i, j);
}
//printf("%d %d\n", i, j);
if(j == 0) dir[i][j] = 0;
else dir[i][j] = dir[i - 1][ j - 1];
}
else {
int ls = dir[i - 1][j];
/*if(i == 3 && j == 3) {
printf("%d %d\n", ls, mx[ls]);
}*/
int val = dp[i - 1][j];
bool rb = false;
if(mx[ls] >= i) rb = true;
if(rb) {
dp[i][j] = dp[i - 1][j] + 1;
dir[i][j] = i;
}
else {
dp[i][j] = dp[i - 1][j];
dir[i][j] = dir[i - 1][j];
}
val = dp[i - 1][j - 1];
if(val < dp[i][j]) {
dp[i][j] = dp[i - 1][j - 1] + 1;
dir[i][j] = i;
}
}
//printf("dp[%d][%d] = %d\n", i, j, dp[i][j]);
}
}
int resp = MAXN;
for(int i = 0; i <= n; i++) {
if(dp[n][i] <= d) resp = min(i, resp);
//printf("%d\n", dp[n][i]);
}
printf("%d\n", resp);
return 0;
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |