博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[leetcode]Unique Paths II
阅读量:6830 次
发布时间:2019-06-26

本文共 1846 字,大约阅读时间需要 6 分钟。

问题描写叙述:

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.

Note: m and n will be at most 100.

基本思路:

此题是前篇 的变形。

增加了障碍格子。可是思路与前篇基本一致。仅仅是在前篇的基础上考虑了障碍格子。

变化的地方有两个:

  1. 初始化第一行第一列时考虑有障碍的影响。

    一旦行或列中出现了障碍格子。后面的格子都不可达。

  2. 在更新到达(i,j)格子时。要注意查看(i。j-1)和(i-1,j)是否是障碍格子,并分别处理。

代码:

int uniquePathsWithObstacles(vector
> &obstacleGrid) { //c++ int m = obstacleGrid.size(); int n = obstacleGrid[0].size(); int array[m][n]; //init bool haveObs = false; for(int i = 0; i < n; i++){ if(obstacleGrid[0][i] == 0 && !haveObs){ array[0][i] = 1; continue; } else if(obstacleGrid[0][i] == 1){ haveObs = true; } array[0][i] = 0; } haveObs = false; for(int i = 0; i < m; i++) { if(obstacleGrid[i][0] == 0 && !haveObs){ array[i][0] = 1; continue; } else if(obstacleGrid[i][0 ==1]){ haveObs = true; } array[i][0] = 0; } for(int i = 1; i < m; i++) for(int j = 1; j < n; j++){ array[i][j] = 0; if(obstacleGrid[i][j] == 1) continue; if(obstacleGrid[i-1][j] == 0) array[i][j] += array[i-1][j]; if(obstacleGrid[i][j-1] == 0) array[i][j] +=array[i][j-1]; } return array[m-1][n-1]; }

转载地址:http://kqjkl.baihongyu.com/

你可能感兴趣的文章
代码阅读分析工具Understand 2.0试用
查看>>
Linux Load average负载详细解释
查看>>
Android多媒体框架图
查看>>
jps命令使用
查看>>
sqlite的时间筛选字段
查看>>
ADC In An FPGA
查看>>
Linux ftp 命令
查看>>
EntityFramework:状态变化与方法的关系
查看>>
Dalvik虚拟机简要介绍和学习计划
查看>>
危险的浮点数float
查看>>
Test class should have exactly one public zero-argument constructor
查看>>
学习笔记之编译和链接
查看>>
百度网页搜索部
查看>>
Flex与SSH集成
查看>>
LifecyclePhaseNotFoundException(转)
查看>>
android 5.0
查看>>
探索Android中的Parcel机制(上)
查看>>
Oracle Minus 取差集
查看>>
下载Google官方/CM Android源代码自动重新开始的Shell脚本
查看>>
python操作Excel读--使用xlrd
查看>>