bitaro.cpp: In function 'int main()':
bitaro.cpp:48:22: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
48 | for(int j = 0; j < rv[i].size(); ++j){
| ~~^~~~~~~~~~~~~~
bitaro.cpp:58:28: warning: comparison of integer expressions of different signedness: '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'} and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
58 | if(++currPointers[j] < bestDists[rv[i][j]].size()){
| ~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
bitaro.cpp:30:18: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
30 | int m, q; scanf("%d %d %d", &n, &m, &q);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
bitaro.cpp:32:21: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
32 | int a, b; scanf("%d %d", &a, &b);; a--, b--;
| ~~~~~^~~~~~~~~~~~~~~~~
bitaro.cpp:75:20: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
75 | int x, y; scanf("%d %d", &x, &y); x--;
| ~~~~~^~~~~~~~~~~~~~~~~
bitaro.cpp:80:19: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
80 | int z; scanf("%d", &z); z--;
| ~~~~~^~~~~~~~~~