crocodile.cpp:14:11: error: ambiguating new declaration of 'long long int travel_plan(int, int, int (*)[2], int*, int, int*)'
14 | long long travel_plan(int N, int M, int R[][2], int L[], int K, int P[]){
| ^~~~~~~~~~~
In file included from crocodile.cpp:1:
crocodile.h:1:5: note: old declaration 'int travel_plan(int, int, int (*)[2], int*, int, int*)'
1 | int travel_plan(int N, int M, int R[][2], int L[], int K, int P[]);
| ^~~~~~~~~~~
crocodile.cpp: In function 'long long int travel_plan(int, int, int (*)[2], int*, int, int*)':
crocodile.cpp:18:3: error: 'nwo' was not declared in this scope; did you mean 'now'?
18 | nwo.node=R[i][1]; e[R[i][0]].push_back(now);
| ^~~
| now
crocodile.cpp:25:12: error: 'class std::priority_queue<std::pair<long long int, long long int> >' has no member named 'front'
25 | now.w=-q.front().first; now.node=q.front().second;
| ^~~~~
crocodile.cpp:25:38: error: 'class std::priority_queue<std::pair<long long int, long long int> >' has no member named 'front'
25 | now.w=-q.front().first; now.node=q.front().second;
| ^~~~~
crocodile.cpp:32:18: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<edge>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
32 | for (int i=0;i<e[now.node].size();i++){
| ~^~~~~~~~~~~~~~~~~~~