63. Unique Paths II
Question
You are given an
m x n
integer arraygrid
. There is a robot initially located at the top-left corner (i.e.,grid[0][0]
). The robot tries to move to the bottom-right corner (i.e.,grid[m-1][n-1]
). The robot can only move either down or right at any point in time.An obstacle and space are marked as
1
or0
respectively ingrid
. A path that the robot takes cannot include any square that is an obstacle.Return the number of possible unique paths that the robot can take to reach the bottom-right corner.
The testcases are generated so that the answer will be less than or equal to
2 * 10<sup>9</sup>
.
Solution
机器人只朝向一个方向移动,不存在折返。
因此可以采用动态规划,直接记录到某个点的总路线数。
当遇到障碍时(即当前访问的格子为1)则不更新dp[]数组。
Code
1 | class Solution { |
63. Unique Paths II