crocodile.cpp: In function 'int travel_plan(int, int, int (*)[2], int*, int, int*)':
crocodile.cpp:8:13: warning: overflow in conversion from 'long int' to 'std::vector<int>::value_type' {aka 'int'} changes value from '19999999999' to '-1474836481' [-Woverflow]
8 | #define INF 19999999999
| ^~~~~~~~~~~
crocodile.cpp:17:21: note: in expansion of macro 'INF'
17 | times.assign(N, INF);
| ^~~
crocodile.cpp:32:26: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
32 | for(int j = 0; j < city[P[i]].size(); j++)
| ~~^~~~~~~~~~~~~~~~~~~
crocodile.cpp:47:34: 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 < city[curNode].size(); j++)
| ~~^~~~~~~~~~~~~~~~~~~~~~
crocodile.cpp:26:36: warning: control reaches end of non-void function [-Wreturn-type]
26 | priority_queue<pair<int, int>> pq;
| ^~