permgame.cpp: In function 'int Alice(int, int, std::vector<int>, std::vector<int>, int, std::vector<int>)':
permgame.cpp:6:5: error: 'll' was not declared in this scope
6 | ll score = 0;
| ^~
permgame.cpp:7:11: error: expected ';' before 'i'
7 | for(ll i = 0; i < m; i++){
| ^~
| ;
permgame.cpp:7:19: error: 'i' was not declared in this scope
7 | for(ll i = 0; i < m; i++){
| ^
permgame.cpp:8:23: error: 'score' was not declared in this scope
8 | if(i == p[i]) score++;
| ^~~~~
permgame.cpp:11:12: error: 'score' was not declared in this scope
11 | return score;
| ^~~~~