Problem Description
You are given an m x n integer array grid. 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 or 0 respectively in grid. 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.
Key Insights
- The robot can only move down or right, which simplifies the pathfinding to a directional problem.
- Obstacles in the grid block potential paths and must be considered in the calculations.
- Dynamic programming can be used to build the number of unique paths iteratively.
- The solution involves maintaining a 2D DP array to store the number of ways to reach each cell.
Space and Time Complexity
Time Complexity: O(m * n)
Space Complexity: O(m * n)
Solution
To solve the problem, we use dynamic programming. We create a 2D array dp
where dp[i][j]
represents the number of unique paths to reach the cell at (i, j).
- Initialize
dp[0][0]
to 1 if the starting cell is not an obstacle. - Iterate through each cell in the grid:
- If the cell is an obstacle (
grid[i][j] == 1
), setdp[i][j]
to 0. - Otherwise, set
dp[i][j]
to the sum of the paths from the top cell (dp[i-1][j]
) and the left cell (dp[i][j-1]
), considering the boundaries of the grid.
- If the cell is an obstacle (
- The value at
dp[m-1][n-1]
will give the number of unique paths to the bottom-right corner.