| Problem | square_ioi |
|---|---|
| User | IWKR |
| Submission Time | 2023-11-25 15:37:18 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
square_ioi.cpp: In function ‘int findMaxSquare(int (*)[1000], int)’:
square_ioi.cpp:29:28: error: ‘min’ was not declared in this scope
29 | dp[i][j] = min(dp[i - 1][j], dp[i][j + 1]) + 1;
| ^~~
square_ioi.cpp:32:28: error: ‘max’ was not declared in this scope
32 | dp[i][j] = max(dp[i][j], 1);
| ^~~
square_ioi.cpp:34:19: error: ‘max’ was not declared in this scope
34 | ans = max(ans, dp[i][j]);
| ^~~