answer.code: In function ‘int main()’:
answer.code:23:12: error: missing template arguments before ‘uh’
23 | vector uh(n, __gnu_pbds::gp_hash_table<ll,int,chash>({},{},{},{},{1<<16}));
| ^~
answer.code:23:60: error: expected primary-expression before ‘,’ token
23 | vector uh(n, __gnu_pbds::gp_hash_table<ll,int,chash>({},{},{},{},{1<<16}));
| ^
answer.code:23:61: error: expected primary-expression before ‘{’ token
23 | vector uh(n, __gnu_pbds::gp_hash_table<ll,int,chash>({},{},{},{},{1<<16}));
| ^
answer.code:23:63: error: expected primary-expression before ‘,’ token
23 | vector uh(n, __gnu_pbds::gp_hash_table<ll,int,chash>({},{},{},{},{1<<16}));
| ^
answer.code:23:64: error: expected primary-expression before ‘{’ token
23 | vector uh(n, __gnu_pbds::gp_hash_table<ll,int,chash>({},{},{},{},{1<<16}));
| ^
answer.code:23:66: error: expected primary-expression before ‘,’ token
23 | vector uh(n, __gnu_pbds::gp_hash_table<ll,int,chash>({},{},{},{},{1<<16}));
| ^
answer.code:23:67: error: expected primary-expression before ‘{’ token
23 | vector uh(n, __gnu_pbds::gp_hash_table<ll,int,chash>({},{},{},{},{1<<16}));
| ^
answer.code:23:69: error: expected primary-expression before ‘,’ token
23 | vector uh(n, __gnu_pbds::gp_hash_table<ll,int,chash>({},{},{},{},{1<<16}));
| ^
answer.code:23:70: error: expected primary-expression before ‘{’ token
23 | vector uh(n, __gnu_pbds::gp_hash_table<ll,int,chash>({},{},{},{},{1<<16}));
| ^
answer.code:23:77: error: expected primary-expression before ‘)’ token
23 | vector uh(n, __gnu_pbds::gp_hash_table<ll,int,chash>({},{},{},{},{1<<16}));
| ^
answer.code:25:15: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
25 | for(auto &[u, v] : edges) {
| ^
answer.code:31:9: error: ‘uh’ was not declared in this scope; did you mean ‘u’?
31 | uh[u][v] = uh[v][u] = 1;
| ^~
| u
answer.code:40:18: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
40 | auto [u, v] = edges[i];
| ^
answer.code:43:20: error: ‘uh’ was not declared in this scope; did you mean ‘u’?
43 | if(uh[v][w]) {
| ^~
| u
answer.code:49:18: warning: structured bindings only available with ‘-std=c++17’ or ‘-std=gnu++17’ [-Wc++17-extensions]
49 | for(auto [u, v] : edges) {
| ^