supertrees.cpp: In function 'int construct(std::vector<std::vector<int> >)':
supertrees.cpp:50:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
50 | for(int i=0;i<check.size()-1;i++)
| ~^~~~~~~~~~~~~~~
supertrees.cpp:57:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
57 | for(int i=0;i<check.size();i++)
| ~^~~~~~~~~~~~~
supertrees.cpp:59:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | for(int j=0;j<check.size();j++)
| ~^~~~~~~~~~~~~
supertrees.cpp:31:6: warning: unused variable 'count' [-Wunused-variable]
31 | int count=0,past;
| ^~~~~
supertrees.cpp:31:14: warning: unused variable 'past' [-Wunused-variable]
31 | int count=0,past;
| ^~~~