Problem | lcs |
---|---|
User | hwy |
Submission Time | 2023-06-07 20:16:10 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
lcs.cpp: In function ‘int main()’:
lcs.cpp:13:13: error: ‘N’ was not declared in this scope
13 | int lst[N+2][M+2];
| ^
lcs.cpp:13:18: error: ‘M’ was not declared in this scope
13 | int lst[N+2][M+2];
| ^
lcs.cpp:18:5: error: ‘lst’ was not declared in this scope
18 | lst[i][j] = 0;
| ^~~
lcs.cpp:21:5: error: ‘lst’ was not declared in this scope
21 | lst[i][j] = lst[i-1][j-1]+1;
| ^~~
lcs.cpp:24:5: error: ‘lst’ was not declared in this scope
24 | lst[i][j] = max(lst[i-1][j], lst[i][j-1]);
| ^~~
lcs.cpp:28:13: error: ‘lst’ was not declared in this scope
28 | cout << lst[A1][B1];
| ^~~