cluedo.cpp: In function 'void solve()':
cluedo.cpp:25:13: error: 'vector' was not declared in this scope
25 | #define vec vector
| ^~~~~~
cluedo.cpp:43:9: note: in expansion of macro 'vec'
43 | vec<int> p(3, 1);
| ^~~
cluedo.cpp:25:13: note: suggested alternatives:
25 | #define vec vector
| ^~~~~~
cluedo.cpp:43:9: note: in expansion of macro 'vec'
43 | vec<int> p(3, 1);
| ^~~
In file included from /usr/include/c++/11/vector:67,
from cluedo.cpp:4:
/usr/include/c++/11/bits/stl_vector.h:389:11: note: 'std::vector'
389 | class vector : protected _Vector_base<_Tp, _Alloc>
| ^~~~~~
In file included from cluedo.cpp:4:
/usr/include/c++/11/vector:86:13: note: 'std::pmr::vector'
86 | using vector = std::vector<_Tp, polymorphic_allocator<_Tp>>;
| ^~~~~~
cluedo.cpp:19:12: error: expected primary-expression before 'long'
19 | #define ll long long
| ^~~~
cluedo.cpp:20:13: note: in expansion of macro 'll'
20 | #define int ll
| ^~
cluedo.cpp:43:13: note: in expansion of macro 'int'
43 | vec<int> p(3, 1);
| ^~~
cluedo.cpp:45:32: error: 'p' was not declared in this scope
45 | int x = Theory(p[0], p[1], p[2]);
| ^