#include "wombats.h"
#include <bits/stdc++.h>
using namespace std;
const int inf = 1e9 + 20;
const int maxN = 5e3 + 20;
const int maxM = 2e2 + 20;
const int maxB = 1e3 + 20;
int hor[maxN][maxM];
int ver[maxN][maxM];
int tmp[maxM][maxM];
int dp[maxM][maxM];
int tree[maxB][maxM][maxM];
int N, M;
void calc(int id, int lt, int rt) {
for (int X = 0; X < M; X++) {
dp[lt][X] = 0;
for (int i = X - 1; i >= 0; i--) {
dp[lt][i] = dp[lt][i + 1] + hor[lt][i];
}
for (int i = X + 1; i < M; i++) {
dp[lt][i] = dp[lt][i - 1] + hor[lt][i - 1];
}
for (int i = lt + 1; i <= rt; i++) {
for (int j = 0; j < M; j++) {
tmp[i][j] = dp[i - 1][j] + ver[i - 1][j];
dp[i][j] = tmp[i][j];
}
int best = tmp[i][0];
for (int j = 1; j < M; j++) {
best = min(best + hor[i][j - 1], tmp[i][j]);
dp[i][j] = min(dp[i][j], best);
}
best = tmp[i][M - 1];
for (int j = M - 2; j >= 0; j--) {
best = min(best + hor[i][j], tmp[i][j]);
dp[i][j] = min(dp[i][j], best);
}
}
for (int Y = 0; Y < M; Y++) {
tree[id][X][Y] = dp[rt][Y];
}
}
}
void init(int R, int C, int H[5000][200], int V[5000][200]) {
N = R;
M = C;
for (int i = 0; i < N; i++) {
for (int j = 0; j < M - 1; j++) {
hor[i][j] = H[i][j];
}
}
for (int i = 0; i < N - 1; i++) {
for (int j = 0; j < M; j++) {
ver[i][j] = V[i][j];
}
}
calc(1, 0, N - 1);
}
void changeH(int P, int Q, int W) {
hor[P][Q] = W;
calc(1, 0, N - 1);
}
void changeV(int P, int Q, int W) {
ver[P][Q] = W;
calc(1, 0, N - 1);
}
int escape(int X, int Y) {
return tree[1][X][Y];
}
Compilation message
grader.c: In function 'int main()':
grader.c:15:6: warning: variable 'res' set but not used [-Wunused-but-set-variable]
15 | int res;
| ^~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
15 ms |
8888 KB |
Output is correct |
2 |
Incorrect |
11 ms |
8956 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
1 ms |
312 KB |
Output is correct |
3 |
Correct |
1 ms |
312 KB |
Output is correct |
4 |
Correct |
1 ms |
468 KB |
Output is correct |
5 |
Correct |
2 ms |
468 KB |
Output is correct |
6 |
Correct |
1 ms |
468 KB |
Output is correct |
7 |
Correct |
1 ms |
468 KB |
Output is correct |
8 |
Correct |
1 ms |
448 KB |
Output is correct |
9 |
Correct |
1 ms |
468 KB |
Output is correct |
10 |
Correct |
1 ms |
468 KB |
Output is correct |
11 |
Correct |
53 ms |
2748 KB |
Output is correct |
12 |
Correct |
1 ms |
468 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
390 ms |
1000 KB |
Output is correct |
2 |
Correct |
399 ms |
996 KB |
Output is correct |
3 |
Correct |
377 ms |
980 KB |
Output is correct |
4 |
Correct |
385 ms |
1024 KB |
Output is correct |
5 |
Correct |
393 ms |
1016 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
7 |
Correct |
1 ms |
340 KB |
Output is correct |
8 |
Correct |
1 ms |
340 KB |
Output is correct |
9 |
Correct |
1858 ms |
1000 KB |
Output is correct |
10 |
Correct |
1 ms |
340 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
65 ms |
17196 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
372 ms |
992 KB |
Output is correct |
2 |
Correct |
365 ms |
980 KB |
Output is correct |
3 |
Correct |
381 ms |
1012 KB |
Output is correct |
4 |
Correct |
372 ms |
1000 KB |
Output is correct |
5 |
Correct |
382 ms |
1020 KB |
Output is correct |
6 |
Incorrect |
56 ms |
17192 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
368 ms |
1004 KB |
Output is correct |
2 |
Correct |
384 ms |
996 KB |
Output is correct |
3 |
Correct |
378 ms |
1004 KB |
Output is correct |
4 |
Correct |
375 ms |
1016 KB |
Output is correct |
5 |
Correct |
360 ms |
960 KB |
Output is correct |
6 |
Incorrect |
49 ms |
17208 KB |
Output isn't correct |
7 |
Halted |
0 ms |
0 KB |
- |