Problem carpark
User ethantanaki
Submission Time 2026-07-11 10:03:01
Score 0
Max Time N/A
Max Memory N/A

Compile Error

carpark.cpp: In function ‘int main()’:
carpark.cpp:13:7: error: request for member ‘push_back’ in ‘pos’, which is of non-class type ‘std::vector<int> [N]’
13 | pos.push_back(binary);
| ^~~~~~~~~
carpark.cpp:17:12: error: no match for ‘operator==’ (operand types are ‘std::vector<int>’ and ‘int’)
17 | if(pos[i]==0) gap[a]++;
| ~~~~~~^~~
| | |
| | int
| std::vector<int>
In file included from /usr/include/c++/9/regex:62,
from /usr/include/x86_64-linux-gnu/c++/9/bits/stdc++.h:110,
from carpark.cpp:1:
/usr/include/c++/9/bits/regex.h:1026:5: note: candidate: ‘template<class _BiIter> bool std::__cxx11::operator==(const std::__cxx11::sub_match<_BiIter>&, const std::__cxx11::sub_match<_BiIter>&)’
1026 | operator==(const sub_match<_BiIter>& __lhs, const sub_match<_BiIter>& __rhs)