cities.cpp: In function 'int main()':
cities.cpp:47:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
47 | for(int j=0; j<v[from].size(); j++)
| ~^~~~~~~~~~~~~~~
cities.cpp:12:7: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
12 | scanf("%d %d %d",& n,& k,& m);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
cities.cpp:17:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
17 | scanf("%d",& temp);
| ~~~~~^~~~~~~~~~~~~
cities.cpp:26:8: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
26 | scanf("%d %d %d",& from,& to,& cost);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~