欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

63. Unique Paths II

程序员文章站 2022-06-30 22:58:41
...
  1. Unique Paths II

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).

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.

Note: m and n will be at most 100.

Example 1:

Input:
[
[0,0,0],
[0,1,0],
[0,0,0]
]
Output: 2
Explanation:
There is one obstacle in the middle of the 3x3 grid above.
There are two ways to reach the bottom-right corner:

  1. Right -> Right -> Down -> Down
  2. Down -> Down -> Right -> Right
    63. Unique Paths II
class Solution:
    def uniquePathsWithObstacles(self, obstacleGrid: List[List[int]]) -> int:
        
        m = len(obstacleGrid)
        n = len(obstacleGrid[0])
        
        f = [0] * m
        for i in range(m):
            f[i] = [0] * n
        
        f[m-1][n-1] = 1 if obstacleGrid[m-1][n-1] != 1 else 0
        
        for j in range(n-2, -1, -1):
            f[m-1][j] = f[m-1][j+1] if obstacleGrid[m-1][j] != 1 else 0
        
        for i in range(m-2, -1, -1):
            f[i][n-1] = f[i+1][n-1] if obstacleGrid[i][n-1] != 1 else 0
        
        for i in range(m-2, -1, -1):
            for j in range(n-2, -1, -1):
                f[i][j] = f[i+1][j] + f[i][j+1] if obstacleGrid[i][j] != 1 else 0
                
        return f[0][0]