beauty.cpp:13:9: error: array bound is not an integer constant before ']' token
13 | ll m[n*n][25],vis[n*n][25];
| ^
beauty.cpp:13:22: error: array bound is not an integer constant before ']' token
13 | ll m[n*n][25],vis[n*n][25];
| ^
beauty.cpp: In function 'long long int solve(long long int, long long int, long long int)':
beauty.cpp:16:8: error: 'vis' was not declared in this scope
16 | if(vis[uu][k])return m[uu][k];vis[uu][k]=1;
| ^~~
beauty.cpp:16:26: error: 'm' was not declared in this scope
16 | if(vis[uu][k])return m[uu][k];vis[uu][k]=1;
| ^
beauty.cpp:16:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
16 | if(vis[uu][k])return m[uu][k];vis[uu][k]=1;
| ^~
beauty.cpp:16:35: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
16 | if(vis[uu][k])return m[uu][k];vis[uu][k]=1;
| ^~~
beauty.cpp:16:35: error: 'vis' was not declared in this scope
beauty.cpp:19:11: error: 'm' was not declared in this scope
19 | return m[uu][k]=1;
| ^
beauty.cpp:22:13: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | for(ll i=0;i<s[k].sz;i++){
| ^
beauty.cpp:26:9: error: 'm' was not declared in this scope
26 | }return m[uu][k]=x;
| ^