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:9:1: error: expected initializer before 'long'
9 | long long int pref[MAXN];
| ^~~~
wombats.cpp: In function 'void init_m1()':
wombats.cpp:17:19: error: 'ver' was not declared in this scope
17 | ans_m1 += ver[i][1];
| ^~~
wombats.cpp: In function 'void init(int, int, int (*)[200], int (*)[200])':
wombats.cpp:30:13: error: 'ver' was not declared in this scope
30 | ver[i + 1][j + 1] = V[i][j];
| ^~~
wombats.cpp: In function 'void changeH(int, int, int)':
wombats.cpp:41:5: error: 'assert' was not declared in this scope
41 | 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:46:36: error: 'ver' was not declared in this scope
46 | long long int new_change = w - ver[x][y];
| ^~~
wombats.cpp: In function 'int escape(int, int)':
wombats.cpp:55:1: warning: control reaches end of non-void function [-Wreturn-type]
55 | }
| ^