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:44:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | for(int l = j + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:51:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
51 | for(int l = last + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:59:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | for(int i = j + 1; j < Q[i].size(); ++j){
| ~~^~~~~~~~~~~~~
candies.cpp:67:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
67 | for(int l = j + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:74:33: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
74 | for(int l = last + 1; l < Q[i].size(); ++l){
| ~~^~~~~~~~~~~~~
candies.cpp:85:24: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
85 | for(int j = 0; j < Q[i].size(); ++j){
| ~~^~~~~~~~~~~~~