Out of Boundary Paths

There is an m by n grid with a ball. Given the start coordinate (i,j) of the ball, you can move the ball to adjacent cell or cross the grid boundary in four directions (up, down, left, right). However, you can at most move N times. Find out the number of paths to move the ball out of grid boundary. The answer may be very large, return it after mod 109 + 7.



Example 1:

Input: m = 2, n = 2, N = 2, i = 0, j = 0
Output: 6
Explanation:

Example 2:

Input: m = 1, n = 3, N = 3, i = 0, j = 1
Output: 12
Explanation:



Note:

Once you move the ball out of boundary, you cannot move it back.
The length and height of the grid is in range [1,50].
N is in range [0,50].

分析

记忆化搜索

落入范围内的,步数不够就是0,步数够就4个方向继续延展

不在范围内,就是最终答案了

DP:

At time t, let's maintaincur[r][c]= the number of paths to(r, c)withtmoves, andnxt[r][c]= the number of paths to(r, c)witht+1moves.

A ball at(r, c)at timet, can move in one of four directions. If it stays on the board, then it contributes to a path that takest+1moves. If it falls off the board, then it contributes to the final answer.

Last updated

Was this helpful?