| Problem | judgequeue |
|---|---|
| User | yay |
| Submission Time | 2026-08-02 12:43:25 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
judgequeue.cpp:9:1: error: expected initializer before ‘void’
9 | void init (int X, int N) {
| ^~~~
judgequeue.cpp: In function ‘void push_front(int)’:
judgequeue.cpp:16:5: error: ‘arr’ was not declared in this scope
16 | arr[subID] = l.begin();
| ^~~
judgequeue.cpp: In function ‘void push_back(int)’:
judgequeue.cpp:22:5: error: ‘arr’ was not declared in this scope
22 | arr[subID] = it;
| ^~~
judgequeue.cpp: In function ‘void insert_before(int, int)’:
judgequeue.cpp:25:5: error: ‘arr’ was not declared in this scope
25 | arr[subID] = l.insert(arr[ref], subID);
| ^~~
judgequeue.cpp: In function ‘void insert_after(int, int)’:
judgequeue.cpp:28:15: error: ‘arr’ was not declared in this scope
28 | auto it = arr[ref];
| ^~~
judgequeue.cpp: In function ‘int sub_before(int)’:
judgequeue.cpp:41:15: error: ‘arr’ was not declared in this scope
4