speedrun.cpp: In function 'void speedrun(int, int, int)':
speedrun.cpp:16:5: error: 'bitset' was not declared in this scope; did you mean 'std::bitset'?
16 | bitset<1005> visited;
| ^~~~~~
| std::bitset
In file included from /usr/include/x86_64-linux-gnu/c++/10/bits/stdc++.h:66,
from speedrun.cpp:2:
/usr/include/c++/10/bitset:751:11: note: 'std::bitset' declared here
751 | class bitset
| ^~~~~~
speedrun.cpp:16:18: error: 'visited' was not declared in this scope
16 | bitset<1005> visited;
| ^~~~~~~
speedrun.cpp:15:9: warning: unused variable 'len' [-Wunused-variable]
15 | int len = getLength();
| ^~~