LintCode 131.大楼轮廓

水平面上有 N 座大楼,每座大楼都是矩阵的形状,可以用一个三元组表示 (start, end, height),分别代表其在x轴上的起点,终点和高度。大楼之间从远处看可能会重叠,求出 N 座大楼的外轮廓线。

外轮廓线的表示方法为若干三元组,每个三元组包含三个数字 (start, end, height),代表这段轮廓的起始位置,终止位置和高度。

扫描线+TreeSet
对每栋楼的范围拆分 拆为若干个起始和终止点 并对这些点进行排序 - 扫描线
用TreeSet来动态维护拆分出的每个点上各个楼的高度
在扫描的过程中对高度相等的区间进行合并 不相等的区间加入答案

public class Solution {
    /**
     * @param buildings: A list of lists of integers
     * @return: Find the outline of those buildings
     */
    public class Point {
        int bldg;
        int x;
        int height;
        int status;
        
        public Point(int bldg, int x, int height, int status) {
            this.bldg = bldg;
            this.x = x;
            this.height = height;
            this.status = status;
        }
    }
    
    public class Height {
        int height;
        int bldg;
        
        public Height(int height, int bldg) {
            this.height = height;
            this.bldg = bldg;
        }
    }
    
    public List<List<Integer>> buildingOutline(int[][] buildings) {        
        List<List<Integer>> result = new ArrayList<>();
        if (buildings.length == 0) {
            return result;
        }
        
        //拆解每个建筑物为两个点,起点和终点,并存储到points中
        List<Point> points = new ArrayList<>();
        for (int i = 0; i < buildings.length; i++) {
            int[] b = buildings[i];
            points.add(new Point(i, b[0], b[2], 1));
            points.add(new Point(i, b[1], b[2], -1));
        }
        
        //对points进行排序,排序优先级为,横坐标>进入or离开>高度
        Collections.sort(points, new Comparator<Point>() {
            public int compare(Point a, Point b) {
                if (a.x != b.x) {
                    return a.x - b.x;
                }
                if (a.status != b.status) {
                    return a.status - b.status;
                }
                return a.height - b.height;
            }
        });
        
        //使用TreeSet存储当前位置的建筑物高度,最高者即为当前区间的高度
        TreeSet<Height> ts = new TreeSet<>(new Comparator<Height>() {
            public int compare(Height a, Height b) {
                if (a.height == b.height) {
                    return a.bldg - b.bldg;
                }
                return a.height - b.height;
            }
        });
        
        //先向TreeSet中添加第一个点
        int curtX = points.get(0).x;
        int curtH = points.get(0).height;
        int curtB = points.get(0).bldg;
        ts.add(new Height(curtH, curtB));
        
        //循环所有之前拆解的点,找到区间并合并
        for (int i = 1; i < points.size(); i++) {
            Point p = points.get(i);
            int height = ts.isEmpty() ? 0 : ts.last().height;
            List<Integer> interval = new ArrayList<>();
            interval.add(curtX);
            interval.add(p.x);
            interval.add(height);
            mergeTo(result, interval);
            
            if (p.status == 1) {
                ts.add(new Height(p.height, p.bldg));
            }
            if (p.status == -1) {
                ts.remove(new Height(p.height, p.bldg));
            }
            
            curtX = p.x;
        }
        
        return result;
    }
    
    private void mergeTo(List<List<Integer>> result, List<Integer> interval) {
        if ((int)interval.get(0) == (int)interval.get(1) || interval.get(2) == 0) {
            return;
        }
        if (result.size() == 0) {
            result.add(interval);
            return;
        }
        
        List<Integer> prev = result.get(result.size() - 1);
        if ((int)prev.get(2) == (int)interval.get(2) && (int)prev.get(1) == (int)interval.get(0)) {
            prev.set(1, interval.get(1));            
        } else {
            result.add(interval);
        }
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值