leetcode 312 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:

You may imagine nums[-1] = nums[n] = 1. They are not real therefore you can not burst them.
0 ≤ n ≤ 500, 0 ≤ nums[i] ≤ 100
Example:

Input: [3,1,5,8]
Output: 167 
Explanation: nums = [3,1,5,8] --> [3,5,8] -->   [3,8]   -->  [8]  --> []
             coins =  3*1*5      +  3*5*8    +  1*3*8      + 1*8*1   = 167

 代码:

class Solution:
    def maxCoins(self, nums):
        """
        : type nums: List[int]
        : rtype: int
        """
        # 方法说明
        # 迭代式: 
        # maxcoins(i,j) = nums[i]*nums[k]*nums[j] + maxcoins(i,k) + maxcoins(k,j)
        # k是最后删除的一个气球,maxcoins是nums[i...j]能戳破气球的最大值
        # maxcoins(i,k)表示i,k之间的气球被删除
        # maxcoins(k,j)表示k,j之间的气球被删除
        # 由于i,k之间和k,j之间的气球被删除,所以nums[k]只能与更外围的数字相乘(nums[i]*nums[k]*nums[j])
        # maxcoins用dp替代
        # 
        # 按照 j-i == 2,3,4,5 的顺序计算
        # 参考:https://blog.csdn.net/zly9923218/article/details/51059664
        
        # 空间换时间

        # 首尾添加1
        nums_len = len(nums)
        nums.insert(0,1)
        nums.append(1)
        
        n = nums_len+2
        dp = []
        for i in range(n):
            temp_list = [0 for j in range(n)]
            dp.append(temp_list)
        
        for i in range(n-2):
            dp[i][i+2] = nums[i]*nums[i+1]*nums[i+2]
        
        for l in range(3,n):
            for i in range(0,n-l):
                j = i+l
                for k in range(i+1,j):
                    dp[i][j] = max(dp[i][j], nums[i]*nums[k]*nums[j] + dp[i][k] + dp[k][j] )
        
        return dp[0][n-1]

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值