#pragma GCC optimize("O3,unroll-loops")
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <cstring>
using namespace std;
#include "wombats.h"
#ifndef ROW
#define ROW 5000
#endif
#define COL 200
/* 256 Mb memory - 64 Million Ints
- one matrix is 200x200 -> max 1600
block + segtree
Memory - 200^2 * 2 * ceil(5000 / B)
Time Per update - [ 200 * 200 * B + lg[ceil(5000 / B)] * 200 * 200]
there are 500 updates
Time for Init - [ 200 * 200 * B * ceil(5000 / B) + 200 * 200 * ceil(5000 / B) ]
= [ 200 * 200 * 5000 + 200 * 200 * ceil(5000 / B) ]
1600 matrix - maybe B = 8, [5000 / B] = 625
*/
constexpr int B = 8;
int nb;
int r, c, h[5009][COL], v[5009][COL];
int L[9999], R[9999], a[1300][COL][COL];
void Unit(int blk) {
for (int ii = 0; ii < c; ++ii) {
static int dp[2][COL];
/* find answer for (V1, V2) where V1 = ii */
memset(dp[0], 63, sizeof dp[0]);
dp[0][ii] = 0;
int I = 0;
for (int i = L[blk]; i <= R[blk]; ++i, I ^= 1) {
if (i < r) {
int pre = 1e9, suf = 1e9;
for (int j = 0; j < c; ++j) {
pre = min(pre, dp[I][j] - h[i][j]);
dp[I][j] = min(dp[I][j], h[i][j] + pre);
}
for (int j = c - 1; j >= 0; --j) {
suf = min(suf, dp[I][j] + h[i][j]);
dp[I][j] = min(dp[I][j], suf - h[i][j]);
}
}
for (int j = 0; j < c; ++j) dp[!I][j] = dp[I][j] + v[i][j];
}
for (int jj = 0; jj < c; ++jj)
a[blk + nb][ii][jj] = dp[I][jj];
}
}
void merg(int v) {
for (int i = 0; i < c; ++i) for (int j = 0; j < c; ++j) a[v][i][j] = 1e9;
for (int i = 0; i < c; ++i) for (int j = 0; j < c; ++j)
for (int k = 0; k < c; ++k)
a[v][i][j] = min(a[v][i][j], a[2 * v][i][k] + a[2 * v + 1][k][j]);
}
void init(int R, int C, int H[ROW][200], int V[ROW][200]) {
r = R, c = C;
for (int i = 0; i + 1 < r; ++i) for (int j = 0; j < c; ++j) v[i][j] = V[i][j];
for (int i = 0 ; i < r; ++i) for (int j = 0; j + 1 < c; ++j) h[i][j + 1] = H[i][j] + h[i][j];
nb = (r + B - 1) / B;
while ((nb - 1) & nb) ++nb;
for (int i = 0; i < nb; ++i) {
L[i] = i * B;
::R[i] = min(r - 1, i * B + B - 1);
Unit(i);
}
for (int i = nb; --i; ) merg(i);
}
void update(int p) {
Unit(p);
for (p += nb; p /= 2; ) merg(p);
}
void changeH(int P, int Q, int W) {
int dl = W - h[P][Q + 1] + h[P][Q];
for (int j = Q + 1; j < c; ++j) h[P][j] += dl;
update(P / B);
}
void changeV(int P, int Q, int W) {
v[P][Q] = W;
update(P / B);
}
int escape(int V1, int V2) { return a[1][V1][V2]; }
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 |
Runtime error |
31 ms |
46312 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
4540 KB |
Output is correct |
2 |
Correct |
1 ms |
4520 KB |
Output is correct |
3 |
Correct |
1 ms |
4444 KB |
Output is correct |
4 |
Correct |
2 ms |
6492 KB |
Output is correct |
5 |
Correct |
1 ms |
6580 KB |
Output is correct |
6 |
Correct |
1 ms |
6488 KB |
Output is correct |
7 |
Correct |
1 ms |
6492 KB |
Output is correct |
8 |
Correct |
1 ms |
604 KB |
Output is correct |
9 |
Correct |
1 ms |
604 KB |
Output is correct |
10 |
Correct |
1 ms |
432 KB |
Output is correct |
11 |
Correct |
46 ms |
8776 KB |
Output is correct |
12 |
Correct |
1 ms |
6492 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1055 ms |
3368 KB |
Output is correct |
2 |
Correct |
883 ms |
3140 KB |
Output is correct |
3 |
Correct |
1035 ms |
3288 KB |
Output is correct |
4 |
Correct |
1075 ms |
10912 KB |
Output is correct |
5 |
Correct |
1062 ms |
8700 KB |
Output is correct |
6 |
Correct |
1 ms |
4440 KB |
Output is correct |
7 |
Correct |
0 ms |
2396 KB |
Output is correct |
8 |
Correct |
1 ms |
4444 KB |
Output is correct |
9 |
Correct |
4747 ms |
9596 KB |
Output is correct |
10 |
Correct |
1 ms |
6488 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
52 ms |
108624 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1014 ms |
10900 KB |
Output is correct |
2 |
Correct |
840 ms |
10836 KB |
Output is correct |
3 |
Correct |
1031 ms |
10832 KB |
Output is correct |
4 |
Correct |
1027 ms |
10904 KB |
Output is correct |
5 |
Correct |
1024 ms |
10840 KB |
Output is correct |
6 |
Runtime error |
30 ms |
40052 KB |
Execution killed with signal 11 |
7 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1051 ms |
10920 KB |
Output is correct |
2 |
Correct |
854 ms |
9812 KB |
Output is correct |
3 |
Correct |
1030 ms |
8288 KB |
Output is correct |
4 |
Correct |
1062 ms |
3408 KB |
Output is correct |
5 |
Correct |
998 ms |
9584 KB |
Output is correct |
6 |
Runtime error |
26 ms |
38232 KB |
Execution killed with signal 11 |
7 |
Halted |
0 ms |
0 KB |
- |