# 天际线问题
城市的天际线是从远处观看该城市中所有建筑物形成的轮廓的外部轮廓。给你所有建筑物的位置和高度,请返回由这些建筑物形成的 天际线 。
每个建筑物的几何信息由数组 buildings
表示,其中三元组 buildings[i] = [lefti, righti, heighti]
表示:
lefti
是第 i
座建筑物左边缘的 x
坐标。
righti
是第 i
座建筑物右边缘的 x
坐标。
heighti
是第 i
座建筑物的高度。
天际线 应该表示为由 “关键点” 组成的列表,格式 [[x1,y1],[x2,y2],...]
,并按 x 坐标 进行 排序 。关键点是水平线段的左端点。列表中最后一个点是最右侧建筑物的终点,y
坐标始终为 0
,仅用于标记天际线的终点。此外,任何两个相邻建筑物之间的地面都应被视为天际线轮廓的一部分。
注意:输出天际线中不得有连续的相同高度的水平线。例如 [...[2 3], [4 5], [7 5], [11 5], [12 7]...]
是不正确的答案;三条高度为 5 的线应该在最终输出中合并为一个:[...[2 3], [4 5], [12 7], ...]
示例 1:
输入:buildings = [[2,9,10],[3,7,15],[5,12,12],[15,20,10],[19,24,8]]
输出:[[2,10],[3,15],[7,12],[12,0],[15,10],[20,8],[24,0]]
解释:
图 A 显示输入的所有建筑物的位置和高度,
图 B 显示由这些建筑物形成的天际线。图 B 中的红点表示输出列表中的关键点。
示例 2:
输入:buildings = [[0,2,3],[2,5,3]]
输出:[[0,3],[5,0]]
提示:
1 <= buildings.length <= 104
0 <= lefti < righti <= 231 - 1
1 <= heighti <= 231 - 1
buildings
按 lefti
非递减排序
以下错误的选项是?
## aop
### before
```cpp
```
### after
```cpp
```
## 答案
```cpp
class Solution
{
public:
vector> getSkyline(vector> &buildings)
{
if (buildings.empty())
return {};
multiset> st;
for (auto b : buildings)
{
st.insert(make_pair(b[0], -b[2]));
st.insert(make_pair(b[1], b[2]));
}
vector> ret;
multiset height = {0};
int m = 0;
for (auto s : st)
{
if (s.second < 0)
height.insert(-s.second);
else
height.erase(height.find(s.second));
if (m != *height.rbegin())
ret.push_back({s.first, *height.rbegin()});
}
return ret;
}
};
```
## 选项
### A
```cpp
class Solution
{
public:
vector> getSkyline(vector> &buildings)
{
vector> h;
multiset m;
vector> res;
for (const auto &b : buildings)
{
h.push_back({b[0], -b[2]});
h.push_back({b[1], b[2]});
}
sort(h.begin(), h.end());
int prev = 0, cur = 0;
m.insert(0);
for (auto i : h)
{
if (i.second < 0)
m.insert(-i.second);
else
m.erase(m.find(i.second));
cur = *m.rbegin();
if (cur != prev)
{
res.push_back({i.first, cur});
prev = cur;
}
}
return res;
}
};
```
### B
```cpp
class Solution
{
public:
vector> getSkyline(vector> &buildings)
{
multiset> all;
vector> res;
for (auto &e : buildings)
{
all.insert(make_pair(e[0], -e[2]));
all.insert(make_pair(e[1], e[2]));
}
multiset heights({0});
vector last = {0, 0};
for (auto &e : all)
{
e.second < 0 ? heights.insert(-e.second) : heights.erase(heights.find(e.second));
auto max_height = *heights.rbegin();
if (last[1] != max_height)
{
last[0] = e.first;
last[1] = max_height;
res.push_back(last);
}
}
return res;
}
};
```
### C
```cpp
class Solution
{
public:
vector> getSkyline(vector> &buildings)
{
multiset> all;
vector> res;
for (auto &e : buildings)
{
all.insert(make_pair(e[0], -e[2]));
all.insert(make_pair(e[1], e[2]));
}
multiset heights;
heights.insert(0);
vector last;
last.push_back(0);
last.push_back(0);
for (auto &p : all)
{
if (p.second < 0)
heights.insert(-p.second);
else
heights.erase(heights.find(p.second));
auto maxHeight = *heights.rbegin();
if (last[1] != maxHeight)
{
last[0] = p.first;
last[1] = maxHeight;
res.push_back(last);
}
}
return res;
}
};
```