grader.c: In function 'int main()':
grader.c:15:6: warning: variable 'res' set but not used [-Wunused-but-set-variable]
15 | int res;
| ^~~
wombats.cpp:11:1: error: expected initializer before 'll'
11 | ll pref[MAXN];
| ^~
wombats.cpp: In function 'void init_m1()':
wombats.cpp:19:19: error: 'ver' was not declared in this scope
19 | ans_m1 += ver[i][1];
| ^~~
wombats.cpp: In function 'void init(int, int, int (*)[200], int (*)[200])':
wombats.cpp:32:13: error: 'ver' was not declared in this scope
32 | ver[i + 1][j + 1] = V[i][j];
| ^~~
wombats.cpp: In function 'void changeH(int, int, int)':
wombats.cpp:43:5: error: 'assert' was not declared in this scope
43 | assert(false);
| ^~~~~~
wombats.cpp:2:1: note: 'assert' is defined in header '<cassert>'; did you forget to '#include <cassert>'?
1 | #include "wombats.h"
+++ |+#include <cassert>
2 |
wombats.cpp: In function 'void changeV(int, int, int)':
wombats.cpp:48:25: error: 'ver' was not declared in this scope
48 | ll new_change = w - ver[x][y];
| ^~~
wombats.cpp: In function 'int escape(int, int)':
wombats.cpp:57:1: warning: control reaches end of non-void function [-Wreturn-type]
57 | }
| ^