leetcode 64

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.

Subscribe to see which companies asked this question.


基本动态规划:设置矩阵存储当前最小值

第一次尝试nm的矩阵使用(n+1)(m+1)矩阵赋值

第0行或0列全部为0

第1行或第1列横向/纵向相加

其余min(num + sum(i-1,j), num+sum(i,j-1))

代码:

class Solution {
public:
    int minPathSum(vector<vector<int>>& grid) {
        int raw = grid.size();
        if(raw == 0)
            return 0;
        int col = grid[0].size();
        //cout << raw << " " << col;
        int sum[raw + 1][col + 1] = {0};
        int i,j;
        for(i = 0 ; i <= raw ; i ++)
        {
            for (j = 0 ; j <= col; j ++)
            {
                if (i == 0 || j == 0)
                    continue;
                if (i == 1)
                {
                    sum[i][j] = grid[i - 1][j - 1] + sum[i][j-1];
                }
                else if(j == 1)
                {
                    sum[i][j] = grid[i - 1][j - 1] + sum[i-1][j];
                }
                else 
                {
                    sum[i][j] = (sum[i-1][j] < sum[i][j-1]) ? sum[i-1][j]:sum[i][j-1];
                    sum[i][j] += grid[i-1][j-1];
                    //cout << i<<" "<<j<<" "<<grid[i-1][j-1] << sum[i][j]<<endl;
                }
            }
                
        }
        return sum[raw][col];
    }
};

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值