Problem | lis_easy |
---|---|
User | HighLithop |
Submission Time | 2025-07-02 16:28:15 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
lis_easy.cpp: In function ‘int main()’:
lis_easy.cpp:13:2: error: ‘vector’ was not declared in this scope
13 | vector<ll> arr;
| ^~~~~~
lis_easy.cpp:2:1: note: ‘std::vector’ is defined in header ‘<vector>’; did you forget to ‘#include <vector>’?
1 | #include <iostream>
+++ |+#include <vector>
2 | typedef long long int ll;
lis_easy.cpp:13:11: error: expected primary-expression before ‘>’ token
13 | vector<ll> arr;
| ^
lis_easy.cpp:13:13: error: ‘arr’ was not declared in this scope
13 | vector<ll> arr;
| ^~~
lis_easy.cpp:21:11: error: expected primary-expression before ‘>’ token
21 | vector<ll> dp;
| ^
lis_easy.cpp:21:13: error: ‘dp’ was not declared in this scope
21 | vector<ll> dp;
| ^~