cover.cpp: In function 'int main()':
cover.cpp:24:18: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for(ll i = 1; i < kor.size(); i++) {
| ~~^~~~~~~~~~~~
cover.cpp:29:18: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
29 | for(ll i = 0; i < hull.size(); i++) {
| ~~^~~~~~~~~~~~~
cover.cpp:32:19: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<std::pair<long long int, long long int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
32 | for(ll j = 0; j < bruh.size(); j++) dp[i + 1] = min(dp[i + 1], bruh[j].first * hull[i].first + bruh[j].second);
| ~~^~~~~~~~~~~~~