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:56:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
56 | for (int i = 0; i < q0.size() && q0.size() < z[r].first; i++)
| ~~^~~~~~~~~~~
split.cpp:56:48: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
56 | for (int i = 0; i < q0.size() && q0.size() < z[r].first; i++)
| ~~~~~~~~~~^~~~~~~~~~~~
split.cpp:59:27: 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 < graph[v].size() && q0.size() < z[r].first; j++)
| ~~^~~~~~~~~~~~~~~~~
split.cpp:59:58: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
59 | for (int j = 0; j < graph[v].size() && q0.size() < z[r].first; j++)
| ~~~~~~~~~~^~~~~~~~~~~~
split.cpp:70:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
70 | for (int i = 0; i < q1.size() && q1.size() < z[1 ^ r].first; i++)
| ~~^~~~~~~~~~~
split.cpp:70:48: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
70 | for (int i = 0; i < q1.size() && q1.size() < z[1 ^ r].first; i++)
| ~~~~~~~~~~^~~~~~~~~~~~~~~~
split.cpp:73:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
73 | for (int j = 0; j < graph[v].size() && q1.size() < z[1 ^ r].first; j++)
| ~~^~~~~~~~~~~~~~~~~
split.cpp:73:58: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
73 | for (int j = 0; j < graph[v].size() && q1.size() < z[1 ^ r].first; j++)
| ~~~~~~~~~~^~~~~~~~~~~~~~~~