| Problem | lis |
|---|---|
| User | XiYangYang |
| Submission Time | 2026-01-24 01:05:06 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
lis.cpp: In function ‘int main()’:
lis.cpp:11:2: error: expected ‘,’ or ‘;’ before ‘vector’
11 | vector<int> dp(n,1);
| ^~~~~~
lis.cpp:17:5: error: ‘dp’ was not declared in this scope
17 | dp[i] = max(dp[j]+1,dp[i]);
| ^~
lis.cpp:20:17: error: ‘dp’ was not declared in this scope
20 | currMax = max(dp[i],currMax);
| ^~