62&63&64. Unique Paths&Unique Paths II&Minimum Path Sum

Unique Paths

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).
How many possible unique paths are there?
這是一個典型的DP問題
假設只有一個格:

走法是1
++
2:1
+++
3:1
++
++
4個排成方形就是2種
+++
+++
+++
這樣的就是:
1,1,1
1,2,3
1,3,6
所以除了橫著第一排和豎著第一排都是1種,其他的都是上邊和左邊的格的步數(shù)相加

var uniquePaths = function(m, n) {
    if (m===0||n===0)
        return 0;
    var res = [];
    for (var i = 0;i < m;i++) {
        res.push([1]);
        for(var j = 1;j < n;j++) {
            if (i===0)
                res[i].push(1);
            else 
                res[i].push(res[i-1][j]+res[i][j-1]);
        }
    }
    return res.pop().pop();
};

Unique Paths II

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.
和上面一樣的思路,遇到有阻礙的點,這個格子可能的路線數(shù)就置0祖屏,需要注意的是第一排和第一列痰娱,只要前面或上面有0婚脱,這個格子也是0叨叙。其余格子還是將左邊的和上邊的數(shù)加起來就好。

var uniquePathsWithObstacles = function(obstacleGrid) {
    var m = obstacleGrid.length;
    var n = obstacleGrid[0].length;
    if (m===0||n===0)
        return 0;
    for (var i = 0;i < m;i++) {
        for(var j = 0;j < n;j++) {
            if (obstacleGrid[i][j]===1) {
                obstacleGrid[i][j]=0;
                continue;
            }
            if (i===0) {
                if (obstacleGrid[i][j-1]===0) obstacleGrid[i][j]=0;
                else obstacleGrid[i][j]=1;
            } else if (j===0) {
                if (obstacleGrid[i-1][j]===0) obstacleGrid[i][j]=0;
                else obstacleGrid[i][j]=1;
            }
            else 
                obstacleGrid[i][j] = obstacleGrid[i-1][j]+obstacleGrid[i][j-1];
        }
    }
    return obstacleGrid.pop().pop();
};

Minimum Path Sum

Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.
Note: You can only move either down or right at any point in time.
這道題和上面的思想很相似

var minPathSum = function(grid) {
    var row = grid.length;
    var col = row===0 ? 0 : grid[0].length;
    for (var i = 0;i < row;i++) {
        if (i!==0)
            grid[i][0] = grid[i-1][0]+grid[i][0];
        for (var j = 1;j < col;j++) {
            if (i===0)
                grid[0][j] = grid[0][j-1]+grid[0][j];
            else
                grid[i][j] = Math.min(grid[i][j-1],grid[i-1][j]) + grid[i][j];
        }
    }
    return grid[row-1][col-1];
};
最后編輯于
?著作權歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末填硕,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子蝇裤,更是在濱河造成了極大的恐慌廷支,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,042評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件栓辜,死亡現(xiàn)場離奇詭異恋拍,居然都是意外死亡,警方通過查閱死者的電腦和手機藕甩,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,996評論 2 384
  • 文/潘曉璐 我一進店門施敢,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人狭莱,你說我怎么就攤上這事僵娃。” “怎么了腋妙?”我有些...
    開封第一講書人閱讀 156,674評論 0 345
  • 文/不壞的土叔 我叫張陵默怨,是天一觀的道長。 經(jīng)常有香客問我骤素,道長匙睹,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,340評論 1 283
  • 正文 為了忘掉前任济竹,我火速辦了婚禮痕檬,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘送浊。我一直安慰自己梦谜,他們只是感情好,可當我...
    茶點故事閱讀 65,404評論 5 384
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著唁桩,像睡著了一般闭树。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上荒澡,一...
    開封第一講書人閱讀 49,749評論 1 289
  • 那天蔼啦,我揣著相機與錄音,去河邊找鬼仰猖。 笑死捏肢,一個胖子當著我的面吹牛,可吹牛的內(nèi)容都是我干的饥侵。 我是一名探鬼主播鸵赫,決...
    沈念sama閱讀 38,902評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼躏升!你這毒婦竟也來了辩棒?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,662評論 0 266
  • 序言:老撾萬榮一對情侶失蹤膨疏,失蹤者是張志新(化名)和其女友劉穎一睁,沒想到半個月后,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體佃却,經(jīng)...
    沈念sama閱讀 44,110評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡者吁,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了饲帅。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片复凳。...
    茶點故事閱讀 38,577評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖灶泵,靈堂內(nèi)的尸體忽然破棺而出育八,到底是詐尸還是另有隱情,我是刑警寧澤赦邻,帶...
    沈念sama閱讀 34,258評論 4 328
  • 正文 年R本政府宣布髓棋,位于F島的核電站,受9級特大地震影響惶洲,放射性物質(zhì)發(fā)生泄漏按声。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,848評論 3 312
  • 文/蒙蒙 一湃鹊、第九天 我趴在偏房一處隱蔽的房頂上張望儒喊。 院中可真熱鬧镣奋,春花似錦币呵、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,726評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽芯义。三九已至,卻和暖如春妻柒,著一層夾襖步出監(jiān)牢的瞬間扛拨,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,952評論 1 264
  • 我被黑心中介騙來泰國打工举塔, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留绑警,地道東北人。 一個月前我還...
    沈念sama閱讀 46,271評論 2 360
  • 正文 我出身青樓央渣,卻偏偏與公主長得像计盒,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子芽丹,可洞房花燭夜當晚...
    茶點故事閱讀 43,452評論 2 348

推薦閱讀更多精彩內(nèi)容