| Problem | duckhunt29 |
|---|---|
| User | bachnguyen123 |
| Submission Time | 2025-12-28 10:49:37 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
duckhunt29.cpp: In function ‘void finddist(int, int)’:
duckhunt29.cpp:4:2: error: ‘vector’ was not declared in this scope
4 | vector<int> p(N+5);
| ^~~~~~
duckhunt29.cpp:4:2: note: suggested alternatives:
In file included from /usr/include/c++/9/vector:67,
from duckhunt29.cpp:2:
/usr/include/c++/9/bits/stl_vector.h:386:11: note: ‘std::vector’
386 | class vector : protected _Vector_base<_Tp, _Alloc>
| ^~~~~~
In file included from duckhunt29.cpp:2:
/usr/include/c++/9/vector:90:13: note: ‘std::pmr::vector’
90 | using vector = std::vector<_Tp, polymorphic_allocator<_Tp>>;
| ^~~~~~
duckhunt29.cpp:4:9: error: expected primary-expression before ‘int’
4 | vector<int> p(N+5);
| ^~~
duckhunt29.cpp:8:3: error: ‘cin’ was not declared in this scope
8 | cin>>p[i];
| ^~~
duckhunt29.cpp:8:8: er