首页 > 其他 > 详细

[LeetCode] Minimum Path Sum

时间:2015-09-10 15:45:24      阅读:132      评论: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.

 
分析:动态规划。f[i][j] = min(f[i-1][j], f[i][j-1]) + a[i][j]
class Solution {
public:
    int minPathSum(vector<vector<int>>& grid) {
        if (grid.size() == 0) return 0;
        
        
        int rows = grid.size();
        int cols = grid[0].size();
        
        for (int i = 0; i < rows; i++) {
            for (int j = 0; j < cols; j++) {
                if (i == 0 && j != 0) {
                    grid[i][j] += grid[i][j-1];
                } else if (i != 0 && j == 0) {
                    grid[i][j] += grid[i-1][j];
                } else if (i == 0 && j == 0) {
                    grid[i][j] = grid[i][j];
                } else {
                    grid[i][j] += min(grid[i-1][j], grid[i][j-1]);
                }
            }
        }
        
        return grid[rows -1][cols - 1];
    }
};

 

[LeetCode] Minimum Path Sum

原文:http://www.cnblogs.com/vincently/p/4798017.html

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