highway.cpp: In function 'void find_pair(int, std::vector<int>, std::vector<int>, int, int)':
highway.cpp:38:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
38 | for (int i=0; i<possible.size(); i++){
| ~^~~~~~~~~~~~~~~~
highway.cpp:39:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
39 | if (i<(possible.size()/2)) f.push_back(possible[i]);
| ~^~~~~~~~~~~~~~~~~~~~
highway.cpp:52:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
52 | for (int i=0; i<poss.size(); i++){
| ~^~~~~~~~~~~~
highway.cpp:53:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
53 | if (i<(poss.size()/2)) f.push_back(poss[i]);
| ~^~~~~~~~~~~~~~~~