bitaro.cpp: In function 'std::vector<std::pair<int, int> > merge(std::vector<std::pair<int, int> >, std::vector<std::pair<int, int> >)':
bitaro.cpp:25:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | for (int i = 0; i < x.size(); i++)
| ~~^~~~~~~~~~
bitaro.cpp:31: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]
31 | while (l1 < x.size() || l2 < y.size()){
| ~~~^~~~~~~~~~
bitaro.cpp:31:29: 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 | while (l1 < x.size() || l2 < y.size()){
| ~~~^~~~~~~~~~
bitaro.cpp:32:13: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
32 | while (l1 < x.size() && fix[x[l1].s] == id) l1++;
| ~~~^~~~~~~~~~
bitaro.cpp:33:13: 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 (l2 < y.size() && fix[y[l2].s] == id) l2++;
| ~~~^~~~~~~~~~
bitaro.cpp:35: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]
35 | if (l1 == x.size()) {
| ~~~^~~~~~~~~~~
bitaro.cpp:42: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]
42 | if (l2 == y.size()){
| ~~~^~~~~~~~~~~
bitaro.cpp: In function 'int main()':
bitaro.cpp:89:21: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
89 | for (int i = 0; i < cur.size(); i++){
| ~~^~~~~~~~~~~~
bitaro.cpp:90:24: warning: comparison of integer expressions of different signedness: 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
90 | if (paths[x].size() == Bl) break;
| ~~~~~~~~~~~~~~~~^~~~~