63. Unique Paths II

1. Description

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 space is marked as 1 and 0 respectively in the grid.

2. Example

Example 1:
Input: obstacleGrid = [[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
Leetcode 63

Example 2:
Input: obstacleGrid = [[0,1],[0,0]]
Output: 1
Leetcode 63

3. Constraints

  • m == obstacleGrid.length
  • n == obstacleGrid[i].length
  • 1 <= m, n <= 100
  • obstacleGrid[i][j] is 0 or 1.

4. Solutions

Dynamic Programming

m = obstacleGrid.size(), n = obstacleGrid[0].size()
Time complexity : O(mn)
Space complexity : O(n)

class Solution {
public:
    int uniquePathsWithObstacles(const vector<vector<int>> &obstacleGrid) {
        vector<int> dp(obstacleGrid[0]); // dp[i] means unique path count to i-th element
        dp[0] = obstacleGrid[0][0] == 1 ? 0 : 1;
        for (int i = 1; i < dp.size(); ++i) {
            dp[i] = obstacleGrid[0][i] == 0 && dp[i-1] == 1 ? 1 : 0;
        }

        for (int i = 1; i < obstacleGrid.size(); ++i) {
            dp[0] = obstacleGrid[i][0] == 1 ? 0 : dp[0];
            for (int j = 1; j < dp.size(); ++j) {
                dp[j] = obstacleGrid[i][j] == 1 ? 0 : dp[j - 1] + dp[j];
            }
        }

        return dp.back();
    }
};
comments powered by Disqus