Main.cpp: In function 'bool fun(long long int, std::vector<long long int>, long long int, std::vector<long long int>)':
Main.cpp:9:15: 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]
9 | for(int i=0;i<a.size();i++){
| ~^~~~~~~~~
Main.cpp:20:9: warning: comparison of integer expressions of different signedness: 'long long int' and 'long long unsigned int' [-Wsign-compare]
20 | if(ans>t*a.size())return false;
| ~~~^~~~~~~~~~~
Main.cpp:22:8: warning: comparison of integer expressions of different signedness: 'long long int' and 'long long unsigned int' [-Wsign-compare]
22 | if(ans<=t*a.size())return true;
| ~~~^~~~~~~~~~~~
Main.cpp: In function 'int main()':
Main.cpp:26:15: warning: unused variable 'j' [-Wunused-variable]
26 | int n, k, i, j, m, mn=INF, t;cin>>n>>k;
| ^
Main.cpp:26:18: warning: unused variable 'm' [-Wunused-variable]
26 | int n, k, i, j, m, mn=INF, t;cin>>n>>k;
| ^
Main.cpp:26:29: warning: unused variable 't' [-Wunused-variable]
26 | int n, k, i, j, m, mn=INF, t;cin>>n>>k;
| ^