Given several Boxes with different colors represented by different positive numbers.
You may experience several rounds to remove Boxes until there is no Box left. Each time you can choose some continuous Boxes with the same color (composed of k Boxes,k >= 1),remove them and get k*k
points.
Find the maximum points you can get.
Example 1:
Input:
[1,3,2,4,1]
Output:
23
Explanation:
[1,1] ----> [1,1] (3*3=9 points) ----> [1,1] (1*1=1 points) ----> [1,1] (3*3=9 points) ----> [] (2*2=4 points)
Note: The number of Boxes n
would not exceed 100.
给出一些不同颜色的盒子,盒子的颜色由数字表示,即不同的数字表示不同的颜色。
你将经过若干轮操作去去掉盒子,直到所有的盒子都去掉为止。每一轮你可以移除具有相同颜色的连续 k 个盒子(k >= 1),这样一轮之后你将得到 k*k
个积分。
当你将所有盒子都去掉之后,求你能获得的最大积分和。
示例 1:
输入:
[1,1]
输出:
23
解释:
[1,1] (3*3=9 分) ----> [1,1] (1*1=1 分) ----> [1,1] (3*3=9 分) ----> [] (2*2=4 分)
Runtime: 1784 ms
Memory Usage: 21.6 MB
1 class Solution { 2 func removeBoxes(_ Boxes: [Int]) -> Int { 3 var n:Int = Boxes.count 4 var dp = [[[Int]]](repeating: [[Int]](repeating: [Int](repeating: 0,count: n),count: n) 5 for i in 0..<n 6 { 7 for k in 0...i 8 { 9 dp[i][i][k] = (1 + k) * (1 + k) 10 } 11 } 12 for t in 1..<n 13 { 14 for j in t..<n 15 { 16 var i:Int = j - t 17 for k in 0...i 18 { 19 var res:Int = (1 + k) * (1 + k) + dp[i + 1][j][0] 20 for m in (i + 1)...j 21 { 22 if Boxes[m] == Boxes[i] 23 { 24 res = max(res,dp[i + 1][m - 1][0] + dp[m][j][k + 1]) 25 } 26 } 27 dp[i][j][k] = res 28 } 29 } 30 } 31 return n == 0 ? 0 : dp[0][n - 1][0] 32 } 33 }
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。