kon.cpp:5:11: error: 'MAXN' was not declared in this scope
5 | bool adj[MAXN][MAXN];
| ^~~~
kon.cpp:5:17: error: 'MAXN' was not declared in this scope
5 | bool adj[MAXN][MAXN];
| ^~~~
kon.cpp: In function 'int countAttackGroups(int, int, std::vector<int>&, std::vector<int>&)':
kon.cpp:11:4: error: 'adj' was not declared in this scope
11 | adj[A[i]-1][B[i]-1] = true;
| ^~~
kon.cpp:25:38: error: 'adj' was not declared in this scope
25 | if (node1 != node2) ok &= adj[node1][node2];
| ^~~
kon.cpp:30:19: error: 'adj' was not declared in this scope
30 | ok &= !adj[node1][node2];
| ^~~