candies.cpp: In function 'std::vector<int> distribute_candies(std::vector<int>, std::vector<int>, std::vector<int>, std::vector<int>)':
candies.cpp:34:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
34 | for(int i = j + 1; j < Q[i].size(); ++j){
| ~~^~~~~~~~~~~~~
candies.cpp:45:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
45 | for(int l = j + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:52:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
52 | for(int l = last + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:60:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
60 | for(int i = j + 1; j < Q[i].size(); ++j){
| ~~^~~~~~~~~~~~~
candies.cpp:69:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
69 | for(int l = j + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:76:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
76 | for(int l = last + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:87:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
87 | for(int j = 0; j < Q[i].size(); ++j){
| ~~^~~~~~~~~~~~~