卖萌的弱渣

I am stupid, I am hungry.

Burst Balloons

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

Example:

Given [3, 1, 5, 8]

Return 167

1
2
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

Solution

  • 三层循环DP
(Burst-Balloons.py) download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
class Solution(object):
    def maxCoins(self, nums):
        """
        :type nums: List[int]
        :rtype: int
        """
        n = len(nums)
        if not nums:
            return 0
        # 把[1]分别插入首和尾
        nums = [1] + nums + [1]
        dp = [[0] * (n+2) for x in range(n+2)]

        def DP(i,j):
            if dp[i][j] > 0:
                return dp[i][j]
            for x in range(i,j+1):
                dp[i][j] = max(dp[i][j], DP(i,x-1)+nums[i-1]*nums[x]*nums[j+1] + DP(x+1,j))
            return dp[i][j]
        return DP(1,n)