boxes.cpp: In function 'long long int delivery(int, int, int, int*)':
boxes.cpp:20:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::deque<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
20 | for (int i = 0; i < first.size(); i++)
| ~~^~~~~~~~~~~~~~
boxes.cpp:25:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::deque<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
25 | for (int i = 0; i < second.size(); i++)
| ~~^~~~~~~~~~~~~~~
boxes.cpp:38:31: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
38 | if (best2.size()-K+i-1<-1) continue;
| ~~~~~~~~~~~~~~~~~~^~~
boxes.cpp:39:29: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
39 | if (best1.size()-i-1<-1) continue;
| ~~~~~~~~~~~~~~~~^~~
boxes.cpp:42:29: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
42 | if (best1.size()-i-1>=0) aa = best1[best1.size()-i-1];
| ~~~~~~~~~~~~~~~~^~~
boxes.cpp:43:31: warning: comparison of unsigned expression in '>= 0' is always true [-Wtype-limits]
43 | if (best2.size()-K+i-1>=0) bb = best2[best2.size()-K+i-1];
| ~~~~~~~~~~~~~~~~~~^~~