Alice.cpp:5:7: error: 'll' does not name a type
5 | const ll SEED = 82014384209183;
| ^~
Alice.cpp:6:7: error: 'll' does not name a type
6 | const ll N = 5000;
| ^~
Alice.cpp:13:13: error: ambiguating new declaration of 'std::vector<std::pair<long long int, long long int> > Alice()'
13 | vector<pii> Alice() {
| ^~~~~
In file included from Alice.cpp:3:
Alice.h:3:33: note: old declaration 'std::vector<std::pair<int, int> > Alice()'
3 | std::vector<std::pair<int,int>> Alice();
| ^~~~~
Alice.cpp: In function 'std::vector<std::pair<long long int, long long int> > Alice()':
Alice.cpp:14:19: error: 'N' was not declared in this scope
14 | ll X = setN((int)N); //X<=10^18<2^60
| ^
Alice.cpp:15:14: error: 'SEED' was not declared in this scope
15 | mt19937 gen(SEED);
| ^~~~
Bob.cpp:5:7: error: 'll' does not name a type
5 | const ll SEED = 82014384209183;
| ^~
Bob.cpp:6:7: error: 'll' does not name a type
6 | const ll N = 5000;
| ^~
Bob.cpp: In function 'll Bob(std::vector<std::pair<long long int, long long int> >)':
Bob.cpp:15:10: error: 'N' was not declared in this scope
15 | ll read[N];
| ^
Bob.cpp:17:3: error: 'read' was not declared in this scope; did you mean 'fread'?
17 | read[i]=-1;
| ^~~~
| fread
Bob.cpp:22:3: error: 'read' was not declared in this scope; did you mean 'fread'?
22 | read[x]=y;
| ^~~~
| fread
Bob.cpp:25:9: error: 'read' was not declared in this scope; did you mean 'fread'?
25 | ll RD=read[x];
| ^~~~
| fread
Bob.cpp:28:12: error: 'gen' was not declared in this scope
28 | ll bv = gen()%60;
| ^~~