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

【Minimum Path Sum】cpp

时间:2015-06-03 21:23:50      阅读:102      评论: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) {
            if ( grid.empty() ) return 0;
            const int m = grid.size();
            const int n = grid[0].size();
            vector<int> dp(n, INT_MAX);
            dp[0] = 0;
            for ( int i=0; i<m; ++i )
            {
                dp[0] += grid[i][0];
                for ( int j=1; j<n; ++j )
                {
                    dp[j] = grid[i][j] + std::min(dp[j-1], dp[j]);
                }
            }
            return dp[n-1];
    }
};

tips:

典型的“DP+滚动数组”,时间复杂度O(m*n),空间复杂度O(n)。

【Minimum Path Sum】cpp

标签:

原文地址:http://www.cnblogs.com/xbf9xbf/p/4550146.html

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