
leetcode unique path
link
A robot is located at the top-left corner of a m x n grid (marked ‘Start’ in the diagram below).
The robot can only move either down or right at any point in time. The robot is trying to reach the bottom-right corner of the grid (marked ‘Finish’ in the diagram below).
How many possible unique paths are there?

Above is a 3 x 7 grid. How many possible unique paths are there?
思路:这是一道明显的DP题,对于任意个点,它一定是又他的正上方的点或者左方的点移动过来的
1 |
class Solution { |
Unique Path ii
link
Follow up for “Unique Paths”:
Now consider if some obstacles are added to the grids. How many unique paths would there be?
An obstacle and empty space is marked as 1 and 0 respectively in the grid.
For example,
There is one obstacle in the middle of a 3x3 grid as illustrated below.
[
[0,0,0],
[0,1,0],
[0,0,0]
]
The total number of unique paths is 2.
与上面的题的唯一的区别是此时会有障碍物在移动的过程中
1 |
class Solution { |




近期评论