supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:28:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
28 | for(auto u : p)
| ^~~
supertrees.cpp:31:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
31 | N = p.size(), fill(vis,vis+1000,false);
| ^
supertrees.cpp:46:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
46 | for(int i = 0; i < N; i++)
| ^~~
supertrees.cpp:48:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
48 | for(int i = 0; i < N; i++)
| ^~~
supertrees.cpp:50:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
50 | if(vis[i])continue; v.clear();
| ^~
supertrees.cpp:50:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
50 | if(vis[i])continue; v.clear();
| ^
supertrees.cpp:52:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
52 | for(int j = 0; j < v.size()-1; j++)
| ~~^~~~~~~~~~~~
supertrees.cpp:60:9: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
60 | if(vis[i])continue; v.clear();
| ^~
supertrees.cpp:60:29: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
60 | if(vis[i])continue; v.clear();
| ^
supertrees.cpp:63:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
63 | for(int j = 0; j < v.size(); j++)
| ~~^~~~~~~~~~
supertrees.cpp:78:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
78 | for(int i = 0; i < N; i++)
| ^~~
supertrees.cpp:81:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
81 | build(answer);
| ^~~~~