前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Dynamic Programming - 63. Unique Paths II

Dynamic Programming - 63. Unique Paths II

作者头像
ppxai
发布2020-09-23 17:28:24
3510
发布2020-09-23 17:28:24
举报
文章被收录于专栏:皮皮星球

63. 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?

null
null

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
代码语言:javascript
复制
**思路:**
>题目意思是棋盘左上角往右下角走,只能向下或者向右走,格子数值如果为1就不能走。题目子问题和62题一样,多的是边界情况的处理,这里多了一个如果数值为1,这个格子就不能走,换句话说,如果一个格子的上面为一个格子为1,左边的格子不为1,那么这个格子能走的种数就和左边的格子一样,就是只能从左边走过来。依次类推。而如果一个格子为1,那么能走来这个格子的种数就为0,

代码:

go:

func uniquePathsWithObstacles(obstacleGrid [][]int) int {

代码语言:javascript
复制
if obstacleGrid == nil || len(obstacleGrid) == 0 || len(obstacleGrid[0]) == 0 {
    return 0
}

m := len(obstacleGrid)
n := len(obstacleGrid[0])

if obstacleGrid[m-1][n-1] == 1 {
     return 0
}    

dp := make([][]int, m)
for i := 0; i < m; i++ {
    dp[i] = make([]int, n)
}

for i := 0; i < m; i++ {
    for j := 0; j < n; j++ {
        if obstacleGrid[i][j] == 1 {
            dp[i][j] = 0
        } else {
            if i == 0 && j == 0 {
                dp[i][j] = 1
            } else if i == 0 && j != 0 {
                dp[i][j] = dp[i][j-1]
            } else if i != 0 && j == 0 {
                dp[i][j] = dp[i-1][j]
            } else {
                dp[i][j] = dp[i][j-1] + dp[i-1][j]
            }
        }
    }
}

return dp[m-1][n-1]
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2019年07月31日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档