Problem Description
There is an m x n
grid with a ball. The ball is initially at the position [startRow, startColumn]
. You are allowed to move the ball to one of the four adjacent cells in the grid (possibly out of the grid crossing the grid boundary). You can apply at most maxMove
moves to the ball. Given the five integers m
, n
, maxMove
, startRow
, startColumn
, return the number of paths to move the ball out of the grid boundary. Since the answer can be very large, return it modulo 10^9 + 7
.
Key Insights
- The ball can move in four directions: up, down, left, right.
- If the ball moves out of the grid, it counts as a valid path.
- Dynamic programming can be used to keep track of the number of ways to reach each cell in the grid after a certain number of moves.
- Memoization is useful to avoid recalculating results for the same state.
Space and Time Complexity
Time Complexity: O(maxMove * m * n)
Space Complexity: O(m * n)
Solution
The solution uses dynamic programming to count the number of ways to move the ball out of the grid. We maintain a 2D array that records the number of paths for each cell at a given number of moves. We iterate through the number of moves, updating the paths for each cell based on the possible movements to adjacent cells. The result is accumulated from cells that are out of bounds.