hack.cpp: In function 'int hack()':
hack.cpp:2:5: error: 'vector' was not declared in this scope
2 | vector<long long> a;
| ^~~~~~
hack.cpp:2:12: error: expected primary-expression before 'long'
2 | vector<long long> a;
| ^~~~
hack.cpp:3:40: error: 'a' was not declared in this scope
3 | for (int i = 1; i <= 1000000; ++i) a.emplace_back(i);
| ^
hack.cpp:4:32: error: 'a' was not declared in this scope
4 | long long res = collisions(a);
| ^
hack.cpp:4:21: error: 'collisions' was not declared in this scope
4 | long long res = collisions(a);
| ^~~~~~~~~~