当前位置:网站首页>LeetCode 1049. 最后一块石头的重量 II 每日一题
LeetCode 1049. 最后一块石头的重量 II 每日一题
2022-07-07 15:32:00 【@小红花】
问题描述
有一堆石头,用整数数组 stones 表示。其中 stones[i] 表示第 i 块石头的重量。
每一回合,从中选出任意两块石头,然后将它们一起粉碎。假设石头的重量分别为 x 和 y,且 x <= y。那么粉碎的可能结果如下:
如果 x == y,那么两块石头都会被完全粉碎;
如果 x != y,那么重量为 x 的石头将会完全粉碎,而重量为 y 的石头新重量为 y-x。
最后,最多只会剩下一块 石头。返回此石头 最小的可能重量 。如果没有石头剩下,就返回 0。示例 1:
输入:stones = [2,7,4,1,8,1]
输出:1
解释:
组合 2 和 4,得到 2,所以数组转化为 [2,7,1,8,1],
组合 7 和 8,得到 1,所以数组转化为 [2,1,1,1],
组合 2 和 1,得到 1,所以数组转化为 [1,1,1],
组合 1 和 1,得到 0,所以数组转化为 [1],这就是最优值。
示例 2:输入:stones = [31,26,33,21,40]
输出:5
提示:
1 <= stones.length <= 30
1 <= stones[i] <= 100来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/last-stone-weight-ii
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
Java
class Solution {
public int lastStoneWeightII(int[] stones) {
int n = stones.length;
int sum = 0;
for(int i : stones){
sum += i;
}
int[] dp = new int[sum / 2 + 1];
for(int i = 0;i < n;i++){
for(int j = sum / 2;j >= stones[i];j--){
dp[j] = Math.max(dp[j],dp[j - stones[i]] + stones[i]);
}
}
return sum - dp[sum / 2] * 2;
}
}
边栏推荐
- The latest interview experience of Android manufacturers in 2022, Android view+handler+binder
- [vulnhub range] thales:1
- Prediction - Grey Prediction
- 数据中台落地实施之法
- AutoLISP series (2): function function 2
- [C language] question set of X
- Pisa-Proxy SQL 解析之 Lex & Yacc
- Record the migration process of a project
- The difference and working principle between compiler and interpreter
- Module VI
猜你喜欢
Personal notes of graphics (3)
作为Android开发程序员,android高级面试
Three. JS series (1): API structure diagram-1
Interface oriented programming
[medical segmentation] attention Unet
Tragedy caused by deleting the console statement
Direct dry goods, 100% praise
【C 语言】 题集 of Ⅹ
预测——灰色预测
最新2022年Android大厂面试经验,安卓View+Handler+Binder
随机推荐
模块六
Laravel post shows an exception when submitting data
目标跟踪常见训练数据集格式
最新高频Android面试题目分享,带你一起探究Android事件分发机制
Advanced C language -- function pointer
深度监听 数组深度监听 watch
typescript ts 基础知识之类型声明
字节跳动Android金三银四解析,android面试题app
Three. JS series (2): API structure diagram-2
Find tags in prefab in unity editing mode
Pisa-Proxy SQL 解析之 Lex & Yacc
Binary search tree (basic operation)
Laravel service provider instance tutorial - create a service provider test instance
ORACLE进阶(六)ORACLE expdp/impdp详解
水平垂直居中 方法 和兼容
数据中台落地实施之法
[hcsd celebrity live broadcast] teach the interview tips of big companies in person - brief notes
正在准备面试,分享面经
The team of East China Normal University proposed the systematic molecular implementation of convolutional neural network with DNA regulation circuit
01tire+ chain forward star +dfs+ greedy exercise one