crocodile.cpp:7:1: error: 'vector' does not name a type
7 | vector<pair<int,int>> adj[N];
| ^~~~~~
crocodile.cpp: In function 'void dfs(int)':
crocodile.cpp:13:20: error: 'adj' was not declared in this scope
13 | for(auto [v,w] : adj[u]){
| ^~~
crocodile.cpp:19:20: error: 'adj' was not declared in this scope
19 | for(auto [v,w] : adj[u]){
| ^~~
crocodile.cpp: In function 'int travel_plan(int, int, int (*)[2], int*, int, int*)':
crocodile.cpp:37:5: error: 'adj' was not declared in this scope
37 | adj[R[i][0]].emplace_back(R[i][1],L[i]);
| ^~~