gw.cpp: In function 'int32_t main()':
gw.cpp:17:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
17 | for(int i=1;i<vect1.size();i++){
| ~^~~~~~~~~~~~~
gw.cpp:24:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for(int i=1;i<h.size()-1;i++){
| ~^~~~~~~~~~~
gw.cpp:31:16: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
31 | for(int i=0;i<sorted.size();){
| ~^~~~~~~~~~~~~~
gw.cpp:33:12: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
33 | while(i<sorted.size()&&sorted[i].f==current){
| ~^~~~~~~~~~~~~~