312. Burst Balloons Hard

Given n balloons, indexed from 0 to n-1. Each balloon is painted with a number on it represented by array nums. You are asked to burst all the balloons. If the you burst balloon i you will get nums[left] * nums[i] * nums[right] coins. Here left and right are adjacent indices of i. After the burst, the left and right then becomes adjacent.

Find the maximum coins you can collect by bursting the balloons wisely.

Note: 
(1) You may imagine nums[-1] = nums[n] = 1. They are not real therefore you can not burst them.

(2) 0 ≤ n ≤ 500, 0 ≤ nums[i] ≤ 100



   思路:本题为最优解问题,可以考虑使用动态规划。   观察可知,每一次爆的气球可以把原来的数组分为两部分,一部分为所爆气球左侧的,一部分为右侧的,这样的左右两侧将互不干扰。这样可以得到问题的子问题,找到每一部分的最大值,由此得到动态规划:设定一个result[j][k],表示从气球j到k的最终计算结果的最大值,最后result[0][nums.size() + 1]表示最终结果。(由note 1,将原数组的左侧和右侧均增加一个数字为1的气球)。



class Solution {
public:
    int maxCoins(vector<int>& nums) {
        int temp[nums.size() + 2];
        temp[0] = 1;
        temp[nums.size() + 1] = 1;
        for (int i = 0; i < nums.size(); i++) {
            temp[i + 1] = nums[i];
        }
        int result[nums.size() + 2][nums.size() + 2];
        for (int i = 0; i < nums.size() + 2; i++) {
            for (int j = 0; j < nums.size() + 2; j++) {
                result[i][j] = 0;
            }
        }
        for (int i = 2; i < nums.size() + 2; i++) {
            for (int j = 0; j + i < nums.size() + 2; j++) {
                int k = j + i;
                for (int m = j + 1; m < k; m++) {
                    result[j][k] = max(result[j][m] + temp[j] * temp [m] * temp[k] + result[m][k], result[j][k]);
                }
            }
        }
        return result[0][nums.size() + 1];
    }
};


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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值