Problem combo
User Kiameimon
Submission Time 2024-03-08 13:38:27
Score 0
Max Time N/A
Max Memory N/A

Compile Error

combo.cpp:10:15: error: ‘complex’ does not name a type
10 | using intpt = complex<u64>;
| ^~~~~~~
combo.cpp:11:14: error: ‘complex’ does not name a type
11 | using llpt = complex<ll>;
| ^~~~~~~
combo.cpp:12:14: error: ‘complex’ does not name a type
12 | using ldpt = complex<ld>;
| ^~~~~~~
combo.cpp: In function ‘std::string guess_sequence(int)’:
combo.cpp:19:2: error: ‘vector’ was not declared in this scope
19 | vector<char> c = {'A', 'B', 'X', 'Y'};
| ^~~~~~
combo.cpp:2:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
1 | #include "combo.h"#include <bits/stdc++.h>
+++ |+#include <vector>
2 | using namespace std;
combo.cpp:19:9: error: expected primary-expression before ‘char’
19 | vector<char> c = {'A', 'B', 'X', 'Y'};
| ^~~~<