tabletennis.cpp: In function 'int main()':
tabletennis.cpp:47:15: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
47 | if(V.size()>=N) break;
| ~~~~~~~~^~~
tabletennis.cpp:49:14: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
49 | if(V.size()>=N) break;
| ~~~~~~~~^~~
tabletennis.cpp:17:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
17 | scanf("%d%d", &N, &K);
| ~~~~~^~~~~~~~~~~~~~~~
tabletennis.cpp:18:33: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
18 | for(int i=1; i<=N+K; i++) scanf("%d", &A[i]);
| ~~~~~^~~~~~~~~~~~~