supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:23:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | for (int i = 0; i < cmp.size(); ++i) {
| ~~^~~~~~~~~~~~
supertrees.cpp:24:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for (int j = 0; j < cmp[i].size(); ++j) {
| ~~^~~~~~~~~~~~~~~
supertrees.cpp:25:31: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | for (int l = 0; l < cmp[i].size(); ++l) {
| ~~^~~~~~~~~~~~~~~