speedrun.cpp: In function 'void assignHints(int, int, int*, int*)':
speedrun.cpp:17:2: error: 'dfsHint' was not declared in this scope
17 | dfsHint(1, 0, adjHint, toAdd);
| ^~~~~~~
speedrun.cpp: In function 'void dfsHint(int, int, std::vector<std::vector<int> >&, std::stack<int>&)':
speedrun.cpp:30:23: error: cannot convert '__gnu_cxx::__alloc_traits<std::allocator<std::vector<int> >, std::vector<int> >::value_type' {aka 'std::vector<int>'} to 'int' in initialization
30 | int next = adjHint[i];
| ^
speedrun.cpp: In function 'void speedrun(int, int, int)':
speedrun.cpp:58:2: error: 'dfsSpeedrun' was not declared in this scope; did you mean 'speedrun'?
58 | dfsSpeedrun(start, par, vis);
| ^~~~~~~~~~~
| speedrun
speedrun.cpp:51:6: warning: unused variable 'l' [-Wunused-variable]
51 | int l = getLength();
| ^