split.cpp: In function 'std::vector<int> find_split(int, int, int, int, std::vector<int>, std::vector<int>)':
split.cpp:26:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
26 | for (int i = 0; i < v.size(); i++)
| ~~^~~~~~~~~~
split.cpp:55:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
55 | for (int i = 0; i < q0.size() && q0.size() < z[r].first; i++)
| ~~^~~~~~~~~~~
split.cpp:55:48: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
55 | for (int i = 0; i < q0.size() && q0.size() < z[r].first; i++)
| ~~~~~~~~~~^~~~~~~~~~~~
split.cpp:58:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
58 | for (int j = 0; j < graph[v].size() && q0.size() < z[r].first; j++)
| ~~^~~~~~~~~~~~~~~~~
split.cpp:58:58: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
58 | for (int j = 0; j < graph[v].size() && q0.size() < z[r].first; j++)
| ~~~~~~~~~~^~~~~~~~~~~~
split.cpp:69:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
69 | for (int i = 0; i < q1.size() && q1.size() < z[1 ^ r].first; i++)
| ~~^~~~~~~~~~~
split.cpp:69:48: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
69 | for (int i = 0; i < q1.size() && q1.size() < z[1 ^ r].first; i++)
| ~~~~~~~~~~^~~~~~~~~~~~~~~~
split.cpp:72:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
72 | for (int j = 1; j < graph[v].size() && q1.size() < z[1 ^ r].first; j++)
| ~~^~~~~~~~~~~~~~~~~
split.cpp:72:58: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
72 | for (int j = 1; j < graph[v].size() && q1.size() < z[1 ^ r].first; j++)
| ~~~~~~~~~~^~~~~~~~~~~~~~~~