supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:76:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
76 | for(int j = 0; j < ve[i].size(); j++)
| ~~^~~~~~~~~~~~~~
supertrees.cpp:78:34: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
78 | for(int k = j + 1; k < ve[i].size(); k++)
| ~~^~~~~~~~~~~~~~
supertrees.cpp:83:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
83 | for(int j = 0; j < ve[i].size(); j++)
| ~~^~~~~~~~~~~~~~
supertrees.cpp:88:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
88 | for(int j = 0; j < ve[i].size(); j++)
| ~~^~~~~~~~~~~~~~
supertrees.cpp:91:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
91 | for(int k = 0; k < ve2[ve[i][j]].size(); k++)
| ~~^~~~~~~~~~~~~~~~~~~~~~
supertrees.cpp:93:36: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
93 | for(int kk = 0; kk < ve2[ve[i][j]].size(); kk++)
| ~~~^~~~~~~~~~~~~~~~~~~~~~
supertrees.cpp:98:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
98 | for(int k = 1; k < ve2[ve[i][j]].size(); k++)
| ~~^~~~~~~~~~~~~~~~~~~~~~
supertrees.cpp:107:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
107 | for(int j = 1; j < ve3.size(); j++)
| ~~^~~~~~~~~~~~