原文:LeetCode 1046. Last Stone Weight

原题链接在这里:https: leetcode.com problems last stone weight 题目: We have a collection of rocks, each rock has a positive integer weight. Each turn, we choose the twoheaviestrocksand smash them together. Sup ...

2019-11-03 06:53 0 291 推荐指数:

查看详情

leetcode_1049. Last Stone Weight II_[DP]

1049. Last Stone Weight II https://leetcode.com/problems/last-stone-weight-ii/ 题意:从一堆石头里任选两个石头s1,s2,若s1==s2,则两个石头都被销毁,否则加入s1<s2,剩下一块重量为s2-s1 ...

Mon May 20 02:08:00 CST 2019 0 507
leetcode 1049 Last Stone Weight II(最后一块石头的重量 II)

思路:原问题可以转换为将数组分割为两个集合(根据符号为正和符号为负划分),使得这两个集合和的差最小。 可以等价为01背包问题。那么dp[i][j]就是将前i个物品放到容量为j的背包能得到的最大值。 ...

Mon May 20 08:52:00 CST 2019 0 529
 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM