您的位置:首页 > 其它

64. Minimum Path Sum

2018-03-04 22:48 225 查看
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.Example 1:
[[1,3,1],
[1,5,1],
[4,2,1]]
Given the above grid map, return 
7
. Because the path 1→3→1→1→1 minimizes the sum.
好久没做动态规划了,快忘光了。
注意边缘与中心是不同的,写出状态转移方程就好了。
代码:class Solution {
public:
int minPathSum(vector<vector<int>>& grid) {
int m=grid.size(),n=grid[0].size();
for(int i=1;i<m;i++)
grid[i][0]+=grid[i-1][0];
for(int j=1;j<n;j++)
grid[0][j]+=grid[0][j-1];
for(int i=1;i<m;i++)
{
for(int j=1;j<n;j++)
{
grid[i][j]=min(grid[i-1][j],grid[i][j-1])+grid[i][j];
}
}
return grid[m-1][n-1];
}
};
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  leedcode