hack.cpp: In function 'long long int hack()':
hack.cpp:3:3: error: 'vector' was not declared in this scope
3 | vector<long long> x(M);
| ^~~~~~
hack.cpp:3:10: error: expected primary-expression before 'long'
3 | vector<long long> x(M);
| ^~~~
hack.cpp:4:8: error: 'x' was not declared in this scope
4 | iota(x.begin(), x.end(), 1);
| ^
hack.cpp:4:3: error: 'iota' was not declared in this scope
4 | iota(x.begin(), x.end(), 1);
| ^~~~
hack.cpp:5:17: error: 'collisions' was not declared in this scope
5 | long long C = collisions(x); // one query
| ^~~~~~~~~~