ho_t2.cpp: In function 'int main()':
ho_t2.cpp:38:19: warning: comparison of integer expressions of different signedness: 'std::vector<long long int>::size_type' {aka 'long unsigned int'} and 'long long int' [-Wsign-compare]
38 | if(a[0].size()<k){
| ~~~~~~~~~~~^~
ho_t2.cpp:43:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
43 | for(int i=k-1;i<a[0].size();i++){
| ~^~~~~~~~~~~~
ho_t2.cpp:44:37: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
44 | while(a[1][ol]<a[0][i] && ol<a[1].size()) ol++;
| ~~^~~~~~~~~~~~
ho_t2.cpp:45:16: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
45 | if(ol+k>a[1].size()) break;
| ~~~~^~~~~~~~~~~~
ho_t2.cpp:47:16: warning: comparison of integer expressions of different signedness: 'long long int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
47 | if(il+k>a[2].size()) break;
| ~~~~^~~~~~~~~~~~