【LeetCode】剑指offer礼物的最大价值

礼物的最大价值

      • 题目描述
      • 算法分析
      • 编程代码

链接: 礼物的最大价值

题目描述

【LeetCode】剑指offer礼物的最大价值_第1张图片

算法分析

【LeetCode】剑指offer礼物的最大价值_第2张图片

编程代码

class Solution {
public:
    int maxValue(vector<vector<int>>& grid) {
        int m = grid.size();
        int n = grid[0].size();
        vector<vector<int>> dp(m+1,vector<int>(n+1));
        for(int i = 1;i <= m;++i)
        {
            for(int j = 1;j <= n;++j)
            {
                dp[i][j] = max(dp[i-1][j],dp[i][j-1]) + grid[i-1][j-1];
            }
        }
        return dp[m][n];
    }
};

【LeetCode】剑指offer礼物的最大价值_第3张图片

你可能感兴趣的:(leetcode)