supertrees.cpp: In constructor 'st::st(int)':
supertrees.cpp:22:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | for(int i=0; i<cad.size(); i++)
| ~^~~~~~~~~~~
supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:43:5: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
43 | for(int i=0; i<n; i++)
| ^~~
supertrees.cpp:59:2: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
59 | build(answer);
| ^~~~~
supertrees.cpp:59:2: error: 'build' was not declared in this scope