1
0
mirror of https://gitee.com/coder-xiaomo/leetcode-problemset synced 2025-01-11 02:58:13 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee
leetcode-problemset/leetcode-cn/problem (Chinese)/最后一块石头的重量 II [last-stone-weight-ii].html
2022-03-29 12:43:11 +08:00

41 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<p>有一堆石头,用整数数组&nbsp;<code>stones</code> 表示。其中&nbsp;<code>stones[i]</code> 表示第 <code>i</code> 块石头的重量。</p>
<p>每一回合,从中选出<strong>任意两块石头</strong>,然后将它们一起粉碎。假设石头的重量分别为&nbsp;<code>x</code>&nbsp;<code>y</code>,且&nbsp;<code>x &lt;= y</code>。那么粉碎的可能结果如下:</p>
<ul>
<li>如果&nbsp;<code>x == y</code>,那么两块石头都会被完全粉碎;</li>
<li>如果&nbsp;<code>x != y</code>,那么重量为&nbsp;<code>x</code>&nbsp;的石头将会完全粉碎,而重量为&nbsp;<code>y</code>&nbsp;的石头新重量为&nbsp;<code>y-x</code></li>
</ul>
<p>最后,<strong>最多只会剩下一块 </strong>石头。返回此石头 <strong>最小的可能重量 </strong>。如果没有石头剩下,就返回 <code>0</code></p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>stones = [2,7,4,1,8,1]
<strong>输出:</strong>1
<strong>解释:</strong>
组合 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],这就是最优值。
</pre>
<p><strong>示例 2</strong></p>
<pre>
<strong>输入:</strong>stones = [31,26,33,21,40]
<strong>输出:</strong>5
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= stones.length &lt;= 30</code></li>
<li><code>1 &lt;= stones[i] &lt;= 100</code></li>
</ul>