国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

LeetCode 63. Unique Paths II

2019-11-08 02:10:57
字體:
來源:轉載
供稿:網友

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.

answer:

class Solution {public:    int uniquePathsWithObstacles(vector<vector<int>>& obstacleGrid) {        int result = 0;        if(obstacleGrid.size() == 0) return result;        int m = obstacleGrid.size(),n = obstacleGrid[0].size();        cout << m << endl;        cout << n << endl;        if(obstacleGrid[0][0] == 1) return 0;        else obstacleGrid[0][0] = 1;        bool flag = false;        int i = 1;        for(i = 1; i < n; i ++){            if(obstacleGrid[0][i] != 1)                obstacleGrid[0][i] = 1;            else{                flag = true;                break;            }        }                if(flag){            while(i < n){                obstacleGrid[0][i] = 0;                i ++;            }         }        flag = false;        for(i = 1; i < m; i ++){            if(obstacleGrid[i][0] != 1)                obstacleGrid[i][0] = 1;            else{                flag = true;                break;            }        }        if(flag){            while(i < m){                obstacleGrid[i][0] = 0;                i ++;            }         }        for(int i = 1; i < m; i ++){            for(int j = 1; j < n; j ++){                int temp = obstacleGrid[i][j - 1] + obstacleGrid[i - 1][j];                if(obstacleGrid[i][j] == 1) obstacleGrid[i][j] = 0;                else obstacleGrid[i][j] = temp;            }        }        return obstacleGrid[m - 1][n - 1];    }};


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 南木林县| 马龙县| 民勤县| 杭锦后旗| 德保县| 云阳县| 潞西市| 辛集市| 古蔺县| 德格县| 青铜峡市| 什邡市| 唐河县| 宣恩县| 宜章县| 菏泽市| 滦平县| 隆德县| 南江县| 雅安市| 刚察县| 怀远县| 宜良县| 共和县| 龙海市| 宁阳县| 通榆县| 广昌县| 海原县| 石渠县| 徐水县| 沁源县| 周口市| 宜城市| 台州市| 图们市| 仲巴县| 郯城县| 昌图县| 绥德县| 齐齐哈尔市|