# 1번째 컴파일 단계
Alice.cpp:9:18: error: lvalue required as decrement operand
9 | const int SEED = 717171--, CNT = 83, BIT = 60;
| ^~~~~~
Alice.cpp:11:10: error: 'BIT' was not declared in this scope
11 | int vals[BIT][CNT];
| ^~~
Alice.cpp:11:15: error: 'CNT' was not declared in this scope
11 | int vals[BIT][CNT];
| ^~~
Alice.cpp: In function 'void build_ls()':
Alice.cpp:14:26: error: 'CNT' was not declared in this scope
14 | for (int i = 3; i <= CNT*BIT+2; i++) {
| ^~~
Alice.cpp:14:30: error: 'BIT' was not declared in this scope
14 | for (int i = 3; i <= CNT*BIT+2; i++) {
| ^~~
Alice.cpp:17:35: error: 'rng' was not declared in this scope
17 | shuffle(ls.begin(), ls.end(), rng);
| ^~~
Alice.cpp:19:25: error: 'BIT' was not declared in this scope
19 | for (int i = 0; i < BIT; i++) {
| ^~~
Alice.cpp:20:29: error: 'CNT' was not declared in this scope
20 | for (int j = 0; j < CNT; j++) {
| ^~~
Alice.cpp:21:13: error: 'vals' was not declared in this scope; did you mean 'ls'?
21 | vals[i][j] = ls[idx];
| ^~~~
| ls
Alice.cpp: In function 'std::vector<std::pair<int, int> > Alice()':
Alice.cpp:36:24: error: 'CNT' was not declared in this scope
36 | long long x = setN(CNT*BIT+2);
| ^~~
Alice.cpp:36:28: error: 'BIT' was not declared in this scope
36 | long long x = setN(CNT*BIT+2);
| ^~~
Alice.cpp:40:26: error: 'vals' was not declared in this scope
40 | for (int j : vals[i])
| ^~~~
Alice.cpp:43:26: error: 'vals' was not declared in this scope
43 | for (int j : vals[i])
| ^~~~