crocodile.cpp: In function 'int travel_plan(int, int, int (*)[2], int*, int, int*)':
crocodile.cpp:38:26: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (ll i = 0; i < adjList[curr.second].size(); i++){
~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
crocodile.cpp:48:48: error: expected ')' before ';' token
pq.push({t[idx].first, idx};)
^
crocodile.cpp:47:17: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
if (t[idx].first != prev)
^~
crocodile.cpp:48:49: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
pq.push({t[idx].first, idx};)
^
crocodile.cpp:48:49: error: expected primary-expression before ')' token