【LeetCode】Minimum Path Sum

來源:互聯網
上載者:User

標籤:style   blog   http   color   io   strong   for   2014   div   

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.

 

解題思路:

典型的動態規劃。開闢m*n的矩陣minV,minV[i][j]存放從首元素(grid[0][0])到當前元素(grid[i][j])的最短路徑長度。

對於每個元素來說,路徑是從上或者從左邊來的。

也就是說minV[i][j] = min(minV[i-1][j]+minV[i][j-1]) + grid[i][j]。

別忘了初始化第一行第一列。

 

class Solution {public:    int minPathSum(vector<vector<int> > &grid)     {        int m = grid.size();        int n = grid[0].size();        //DP,存放從首元素到該元素的最短路徑        vector<vector<int> > minV;        minV.resize(m);        for(vector<vector<int> >::size_type st = 0; st < m; st ++)            minV[st].resize(n);        minV[0][0] = grid[0][0];        //第一列初始化        for(vector<vector<int> >::size_type st = 1; st < m; st ++)            minV[st][0] = minV[st-1][0] + grid[st][0];        //第一行初始化        for(vector<int>::size_type st = 1; st < n; st ++)            minV[0][st] = minV[0][st-1] + grid[0][st];        for(vector<vector<int> >::size_type st1 = 1; st1 < m; st1 ++)        {            for(vector<int>::size_type st2 = 1; st2 < n; st2 ++)            {                minV[st1][st2] = min(minV[st1-1][st2],minV[st1][st2-1])+grid[st1][st2];            }        }        return minV[m-1][n-1];    }};

【LeetCode】Minimum Path Sum

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.