supertrees.cpp: In function 'void dfs(int)':
supertrees.cpp:22:24: 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 < k[u].size() ; i ++ ){
| ~~^~~~~~~~~~~~~
supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:36:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
36 | for( int j = 0 ; j < p[i].size(); j ++ ){
| ~~^~~~~~~~~~~~~
supertrees.cpp:59:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | for( int i = 1 ; i < v.size(); i ++ ){
| ~~^~~~~~~~~~
supertrees.cpp:79:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
79 | for( int i = 0 ; i < used.size(); i ++ ){
| ~~^~~~~~~~~~~~~
supertrees.cpp:84:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
84 | for( int i = 0 ; i < e.size() ; i ++ ){
| ~~^~~~~~~~~~
supertrees.cpp:85:28: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
85 | for( int j = 0 ; j < e.size(); j ++ ){
| ~~^~~~~~~~~~