solution.md 4.3 KB
Newer Older
ToTensor's avatar
ToTensor 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
# 天际线问题

<p>城市的天际线是从远处观看该城市中所有建筑物形成的轮廓的外部轮廓。给你所有建筑物的位置和高度,请返回由这些建筑物形成的<strong> 天际线</strong></p>

<p>每个建筑物的几何信息由数组 <code>buildings</code> 表示,其中三元组 <code>buildings[i] = [lefti, righti, heighti]</code> 表示:</p>

<ul>
	<li><code>left<sub>i</sub></code> 是第 <code>i</code> 座建筑物左边缘的 <code>x</code> 坐标。</li>
	<li><code>right<sub>i</sub></code> 是第 <code>i</code> 座建筑物右边缘的 <code>x</code> 坐标。</li>
	<li><code>height<sub>i</sub></code> 是第 <code>i</code> 座建筑物的高度。</li>
</ul>

<p><strong>天际线</strong> 应该表示为由 “关键点” 组成的列表,格式 <code>[[x<sub>1</sub>,y<sub>1</sub>],[x<sub>2</sub>,y<sub>2</sub>],...]</code> ,并按 <strong>x 坐标 </strong>进行 <strong>排序</strong><strong>关键点是水平线段的左端点</strong>。列表中最后一个点是最右侧建筑物的终点,<code>y</code> 坐标始终为 <code>0</code> ,仅用于标记天际线的终点。此外,任何两个相邻建筑物之间的地面都应被视为天际线轮廓的一部分。</p>

<p><strong>注意:</strong>输出天际线中不得有连续的相同高度的水平线。例如 <code>[...[2 3], [4 5], [7 5], [11 5], [12 7]...]</code> 是不正确的答案;三条高度为 5 的线应该在最终输出中合并为一个:<code>[...[2 3], [4 5], [12 7], ...]</code></p>

<p> </p>

<p><strong>示例 1:</strong></p>
<img alt="" src="https://assets.leetcode.com/uploads/2020/12/01/merged.jpg" style="width: 800px; height: 331px;" />
<pre>
<strong>输入:</strong>buildings = [[2,9,10],[3,7,15],[5,12,12],[15,20,10],[19,24,8]]
<strong>输出:</strong>[[2,10],[3,15],[7,12],[12,0],[15,10],[20,8],[24,0]]
<strong>解释:</strong>
图 A<strong> </strong>显示输入的所有建筑物的位置和高度,
图 B 显示由这些建筑物形成的天际线。图 B 中的红点表示输出列表中的关键点。</pre>

<p><strong>示例 2:</strong></p>

<pre>
<strong>输入:</strong>buildings = [[0,2,3],[2,5,3]]
<strong>输出:</strong>[[0,3],[5,0]]
</pre>

<p> </p>

<p><strong>提示:</strong></p>

<ul>
	<li><code>1 <= buildings.length <= 10<sup>4</sup></code></li>
	<li><code>0 <= left<sub>i</sub> < right<sub>i</sub> <= 2<sup>31</sup> - 1</code></li>
	<li><code>1 <= height<sub>i</sub> <= 2<sup>31</sup> - 1</code></li>
	<li><code>buildings</code><code>left<sub>i</sub></code> 非递减排序</li>
</ul>


## template

```python
ToTensor's avatar
ToTensor 已提交
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
import heapq
class Solution:
    def getSkyline(self, buildings: List[List[int]]) -> List[List[int]]:
        right_heap = []
        height_lst = []

        ans = []

        for building in buildings:
            left, right, height = building

            while right_heap and right_heap[0][0] < left:

                old_highest = height_lst[-1]

                last_right, last_height = heapq.heappop(right_heap)
                height_lst.pop(bisect.bisect_left(height_lst, last_height))

                new_highest = height_lst[-1] if height_lst else 0

                if new_highest != old_highest:
                    if ans and ans[-1][0] == last_right:
                        ans.pop()
                    ans.append([last_right, new_highest])

            old_highest = height_lst[-1] if height_lst else 0

            bisect.insort_left(height_lst, height)
            heapq.heappush(right_heap, (right, height))

            new_highest = height_lst[-1]

            if new_highest != old_highest:
                if ans and ans[-1][0] == left:
                    ans.pop()
                ans.append([left, new_highest])

        while right_heap:

            old_highest = height_lst[-1]

            last_right, last_height = heapq.heappop(right_heap)
            height_lst.pop(bisect.bisect_left(height_lst, last_height))

            new_highest = height_lst[-1] if height_lst else 0

            if new_highest != old_highest:
                if ans and ans[-1][0] == last_right:
                    ans.pop()
                ans.append([last_right, new_highest])

        return ans
ToTensor's avatar
ToTensor 已提交
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130


```

## 答案

```python

```

## 选项

### A

```python

```

### B

```python

```

### C

```python

```