力扣 218. 天际线问题 堆 扫描线

8 篇文章 0 订阅
1 篇文章 0 订阅

https://leetcode-cn.com/problems/the-skyline-problem/
在这里插入图片描述
思路:首先意识到每个建筑物的左右端点都有可能成为我们所关注的轮廓点,按照天际线的输出方式,我们应该读入这些端点并按照从小到大的顺序排序。然后考虑在每一个端点 p x p_x px的输出,实际上就是计算直线 x = p x x=p_x x=px与建筑物相交点的 y y y坐标的最大值,如果没有输出0即可。交点y坐标不就是建筑物的高度嘛, O ( n ) O(n) O(n)遍历求最大高度肯定是不可取的(会超时),用堆维护即可。

struct Node{
    int r,h;
    Node(int r,int h):r(r),h(h){}
    bool operator <(const Node& a)const
    {
        return h<a.h;
    }
};

class Solution {
public:
    vector<vector<int>> getSkyline(vector<vector<int>>& buildings) {
        vector<int> pos;
        for(vector<int>& build:buildings)
            pos.push_back(build[0]),pos.push_back(build[1]);
        sort(pos.begin(),pos.end());
        priority_queue<Node> q;
        int n=buildings.size(),idx=0;
        vector<vector<int>> ans;
        for(int p:pos)
        {
            while(idx<n&&buildings[idx][0]<=p)
            {
                q.emplace(buildings[idx][1],buildings[idx][2]);
                ++idx;
            }
            while(!q.empty()&&q.top().r<=p)
                q.pop();
            int ansh=0;
            if(!q.empty())
                ansh=q.top().h;
            if(ans.size()&&ansh==ans.back()[1])
                continue;
            ans.push_back({p,ansh});
        }
        return ans;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值