打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
63 Unique Paths II

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

public static int UniquePathsIIDP(List<List<int>> obstacleGrid)

        {

            int m = obstacleGrid.Count;

            int n = obstacleGrid[0].Count;

            int[,] grid = new int[m, n];


            // if the start point is a obstacle, return 0

            if (obstacleGrid[0][0] == 1)

                return 0;

            grid[0, 0] = 1;


            for (int i = 1; i < m; i++)

            {

                if (obstacleGrid[i][0] == 0 && grid[i - 1, 0] != 0)

                    grid[i, 0] = 1;

                else

                    grid[i, 0] = 0;

            }


            for (int i = 1; i < n; i++)

            {

                if (obstacleGrid[0][i] == 0 && grid[0, i - 1] != 0)

                    grid[0, i] = 1;

                else

                    grid[0, i] = 0;

            }


            for (int i = 1; i < m; i++)

            {

                for (int j = 1; j < n; j++)

                {

                    if (obstacleGrid[i][j] == 1)

                        grid[i, j] = 0;

                    else

                        grid[i, j] = grid[i - 1, j] + grid[i, j - 1];

                }

            }


            return grid[m - 1, n - 1];

        }

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
机器人方格往右或往下挪步问题(完整解法)
LeetCode之Island Perimeter
C语言编程 有一篇文章,共有3行文字,每行80个字符。要求分别统计出其中英文字母,数字,空...
423,动态规划和递归解最小路径和
​LeetCode刷题实战63:不同路径 II
n皇后代码
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服