题目
有一堆石头,每块石头的重量都是正整数。
每一回合,从中选出两块最重的石头,然后将它们一起粉碎。假设石头的重量分别为 x
和 y
,且 x <= y
。那么粉碎的可能结果如下:
- 如果
x == y
,那么两块石头都会被完全粉碎; - 如果
x != y
,那么重量为x
的石头将会完全粉碎,而重量为y
的石头新重量为y-x
。
最后,最多只会剩下一块石头。返回此石头的重量。如果没有石头剩下,就返回 0。
方案一(最小堆)
import heapq
class Solution:
def lastStoneWeight(self, stones: List[int]) -> int:
stones = [-stone for stone in stones]
# 由于 heapq 是最小堆,此处转化为负数
heapq.heapify(stones)
while len(stones) >= 2:
stone_1 = -heapq.heappop(stones)
stone_2 = -heapq.heappop(stones)
if stone_1 == stone_2:
continue
heapq.heappush(stones, -abs(stone_1 - stone_2))
return -stones[0] if len(stones) == 1 else 0