Problem | gecko |
---|---|
User | cobnet |
Submission Time | 2025-02-20 22:08:58 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
gecko.cpp: In function ‘int main()’:
gecko.cpp:13:25: error: ‘h’ was not declared in this scope
13 | vector<vector<int>> dp(h, vector<int>(w, 0));
| ^
gecko.cpp:13:40: error: ‘w’ was not declared in this scope
13 | vector<vector<int>> dp(h, vector<int>(w, 0));
| ^
gecko.cpp:23:24: error: ‘grid’ was not declared in this scope
23 | dp[i][j] = grid[i][j] + best;
| ^~~~