首页 > 其他 > 详细

Minimum Path Sum

时间:2015-11-29 00:34:06      阅读:270      评论:0      收藏:0      [点我收藏+]

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.

class Solution {
public:
    int minPathSum(vector<vector<int>>& grid) {
        int m = grid.size();
        int n = grid[0].size();
        vector<int> help(n,0);
        for(int i=0;i<m;i++){
            for(int j=0;j<n;j++){
                if(j==0){
                    help[j] += grid[i][j];
                    continue;
                }
                if(i==0){
                    help[j] =help[j-1] + grid[i][j];
                }else{
                    help[j] = min(help[j-1],help[j])+grid[i][j];
                }
            }
        }
        return help[n-1];
    }
};

 

Minimum Path Sum

原文:http://www.cnblogs.com/zengzy/p/5003774.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!