supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:31:21: error: 'three' was not declared in this scope
31 | three = 1;
| ^~~~~
supertrees.cpp:34:21: error: 'two' was not declared in this scope
34 | two = 1;
| ^~~
supertrees.cpp:63:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
63 | for (int k = 0; k < trees[j].size(); k++) {
| ~~^~~~~~~~~~~~~~~~~
supertrees.cpp:64:39: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
64 | for (int l = k + 1; l < trees[j].size(); l++) {
| ~~^~~~~~~~~~~~~~~~~
supertrees.cpp:85:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
85 | for (int k = 0; k < trees[j].size() - 1; k++) {
| ~~^~~~~~~~~~~~~~~~~~~~~