Python | Leetcode Python题解之第218题天际线问题

题目:

题解:

python 复制代码
class Solution:
    def getSkyline(self, buildings: List[List[int]]) -> List[List[int]]:
        buildings.sort(key=lambda bu:(bu[0],-bu[2],bu[1]))
        buildings.append([inf,inf,inf])
        heap = [[-inf,-inf,-inf]]
        ans = []
        for l,r,h in buildings:
            if heap[0][2] < l:
                topRight = heappop(heap)[2]
                while heap and topRight < l:
                    if heap[0][2] > topRight:
                        # 建筑群内有较较矮的建筑宽度比高的大,对齐进行切块
                        top = heappop(heap)
                        top[1], topRight = topRight, top[2]
                        # 如果新的切块也覆盖到新建筑,不需要再放入了
                        if topRight >= l: heappush(heap, top)
                        if ans[-1][1] != -top[0]: ans.append([top[1], -top[0]])
                    else: heappop(heap)
                if not heap: ans.append([topRight, 0])
            if not heap or h > -heap[0][0]: ans.append([l, h])
            if heap and heap[0][0] == -h and heap[0][2] < r: heap[0][2] = r
            else: heappush(heap, [-h,l,r])
        return ans[1:-1]
相关推荐
江一铭29 分钟前
使用python脚本爬取前端页面上的表格导出为Excel
前端·python·excel
潇与上海33 分钟前
【python基础——异常BUG】
python
7yewh1 小时前
【LeetCode】力扣刷题热题100道(6-10题)附源码 相交链表 回文链表 反转链表 合并链表 移动零(C++)
c语言·数据结构·c++·算法·leetcode·链表·贪心算法
DARLING Zero two♡1 小时前
【优选算法】Simulation-Phoenix:模拟算法的重生涅槃
java·数据结构·c++·算法·leetcode
Y1nhl1 小时前
搜广推校招面经四
pytorch·python·搜索引擎·推荐算法
Cosmoshhhyyy1 小时前
LeetCode:165. 比较版本号(双指针 Java)
java·python·leetcode
亲持红叶2 小时前
第四、五章图论和网络爬虫+网络搜索
人工智能·python·自然语言处理
重剑无锋10242 小时前
python无需验证码免登录12306抢票 --selenium(2)
java·python·selenium
zhangfeng11336 小时前
selenium已经登陆了 我怎么查看 网页 在fRequest xhr 的数据呢
开发语言·python
music&movie8 小时前
代码填空任务---自编码器模型
python·深度学习·机器学习