欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【Leetcode_总结】 1046. 最后一块石头的重量 - python

程序员文章站 2022-05-06 09:40:27
...

Q:

有一堆石头,每块石头的重量都是正整数。

每一回合,从中选出两块最重的石头,然后将它们一起粉碎。假设石头的重量分别为 x 和 y,且 x <= y。那么粉碎的可能结果如下:

  • 如果 x == y,那么两块石头都会被完全粉碎;
  • 如果 x != y,那么重量为 x 的石头将会完全粉碎,而重量为 y 的石头新重量为 y-x

最后,最多只会剩下一块石头。返回此石头的重量。如果没有石头剩下,就返回 0

 

提示:

  1. 1 <= stones.length <= 30
  2. 1 <= stones[i] <= 1000

思路:利用堆栈 水一个~
链接:https://leetcode-cn.com/problems/last-stone-weight/

代码:

class Solution:
    def lastStoneWeight(self, stones: List[int]) -> int:
        stack = sorted(stones)
        while stack:
            if len(stack) == 1:
                return stack.pop()
            a = stack.pop()
            if stack[-1] == a:
                stack.pop()
            else:
                stack[-1] = abs(a - stack[-1])
                stack = sorted(stack)
        return 0

【Leetcode_总结】 1046. 最后一块石头的重量 - python

相关标签: 堆栈 数组