码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode Minimum Path Sum

时间:2014-06-30 13:23:04      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   for   leetcode   

class Solution {
public:
    int minPathSum(vector<vector<int> > &grid) {
        int rows = grid.size();
        if (rows < 1) return 0;
        int cols = grid[0].size();
        if (cols < 1) return 0;
        
        vector<int> pathsum(cols + 1, INT_MAX);
        pathsum[0] = 0;
        
        for (int i=0; i<rows; i++) {
            for (int j=1; j<=cols; j++) {
                int up = pathsum[j];
                int left = pathsum[j - 1];
                pathsum[j] = grid[i][j - 1];
                if (up > left) {
                    pathsum[j] += left; 
                } else {
                    pathsum[j] += up;
                }
                pathsum[0] = INT_MAX;
            }
        }
        return pathsum[cols];
    }
};

常规DP,这里使用一个一维的DP数组,作用和二维的一致。

LeetCode Minimum Path Sum,布布扣,bubuko.com

LeetCode Minimum Path Sum

标签:style   blog   color   使用   for   leetcode   

原文地址:http://www.cnblogs.com/lailailai/p/3813839.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!