cave.cpp: In function 'void exploreCave(int)':
cave.cpp:11:5: error: 'queue' was not declared in this scope
11 | queue <int> q;
| ^~~~~
cave.cpp:11:12: error: expected primary-expression before 'int'
11 | queue <int> q;
| ^~~
cave.cpp:14:9: error: 'q' was not declared in this scope
14 | q.push(i);
| ^
cave.cpp:19:13: error: 'tryCombination' was not declared in this scope
19 | cr1=tryCombination(v);
| ^~~~~~~~~~~~~~
cave.cpp:21:25: error: 'q' was not declared in this scope
21 | for (int i=0; i<q.size(); i++){
| ^
cave.cpp:36:5: error: 'answer' was not declared in this scope
36 | answer(v,d);
| ^~~~~~