crocodile.cpp:10:1: error: 'll' does not name a type
ll d[100005][2];
^
crocodile.cpp: In function 'int travel_plan(int, int, int (*)[2], int*, int, int*)':
crocodile.cpp:22:3: error: 'd' was not declared in this scope
d[i][0] = eps;
^
crocodile.cpp:30:3: error: 'd' was not declared in this scope
d[x][0] = 0;
^
crocodile.cpp:39:22: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j = 0 ; j <adj[u.S].size();j++){
^
crocodile.cpp:41:7: error: 'd' was not declared in this scope
if(d[u.S][1] + v.F < d[v.S][0]){
^
crocodile.cpp:52:9: error: 'd' was not declared in this scope
return d[0][1];
^