art.cpp: In function 'int main()':
art.cpp:17:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
17 | for(int i = 0; i < v.size(); i++) {
| ~~^~~~~~~~~~
art.cpp:23:14: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
23 | while (l < v.size()) {
| ~~^~~~~~~~~~
art.cpp:24:15: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | if (p < v.size() && suma - v[p][0] + v[l][0] > 0) {
| ~~^~~~~~~~~~
art.cpp:29:19: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::vector<long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | if (p < v.size() - 1) {
| ~~^~~~~~~~~~~~~~