LeetCode 218. 天际线问题

LeetCode 218. 天际线问题,第1张

LeetCode 218. 天际线问题

思路:扫描线 代码:
class Solution {
public:
    vector> getSkyline(vector>& buildings) {
        vector> res;
        vector> points;
        multiset heights;
        for(auto& b:buildings){
            points.push_back({b[0],-b[2]});
            points.push_back({b[1],b[2]});
        }
        sort(points.begin(),points.end());
        heights.insert(0);
        for(auto& p:points){
            int x=p.first,h=abs(p.second);
            if(p.second<0){//左端点
                if(h>*heights.rbegin())
                    res.push_back({x,h});
                heights.insert(h);
            }else{
                heights.erase(heights.find(h));
                if(h>*heights.rbegin())
                    res.push_back({x,*heights.rbegin()});
            }
        }
        return res;

    }
};

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5635547.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存