`
hcx2013
  • 浏览: 90381 次
社区版块
存档分类
最新评论

The Skyline Problem

 
阅读更多

A city's skyline is the outer contour of the silhouette formed by all the buildings in that city when viewed from a distance. Now suppose you are given the locations and height of all the buildings as shown on a cityscape photo (Figure A), write a program to output the skyline formed by these buildings collectively (Figure B).

Buildings Skyline Contour

The geometric information of each building is represented by a triplet of integers [Li, Ri, Hi], where Li and Ri are the x coordinates of the left and right edge of the ith building, respectively, and Hi is its height. It is guaranteed that 0 ≤ Li, Ri ≤ INT_MAX0 < Hi ≤ INT_MAX, and Ri - Li > 0. You may assume all buildings are perfect rectangles grounded on an absolutely flat surface at height 0.

For instance, the dimensions of all buildings in Figure A are recorded as: [ [2 9 10], [3 7 15], [5 12 12], [15 20 10], [19 24 8] ] .

The output is a list of "key points" (red dots in Figure B) in the format of [ [x1,y1], [x2, y2], [x3, y3], ... ] that uniquely defines a skyline. A key point is the left endpoint of a horizontal line segment. Note that the last key point, where the rightmost building ends, is merely used to mark the termination of the skyline, and always has zero height. Also, the ground in between any two adjacent buildings should be considered part of the skyline contour.

For instance, the skyline in Figure B should be represented as:[ [2 10], [3 15], [7 12], [12 0], [15 10], [20 8], [24, 0] ].

Notes:

  • The number of buildings in any input list is guaranteed to be in the range [0, 10000].
  • The input list is already sorted in ascending order by the left x position Li.
  • The output list must be sorted by the x position.
  • There must be no consecutive horizontal lines of equal height in the output skyline. For instance, [...[2 3], [4 5], [7 5], [11 5], [12 7]...] is not acceptable; the three lines of height 5 should be merged into one in the final output as such: [...[2 3], [4 5], [12 7], ...]
public class Solution {
	public static class Line implements Comparable<Line> {
		public int x;
		public boolean left;
		public int height;
		public Line(int x, int height, boolean left) {
            this.x = x;
            this.height = height;
            this.left = left;
        }
		@Override
		public int compareTo(Line o) {
			// TODO Auto-generated method stub
			if (x != o.x) {
				return x - o.x;
			}
			if (left != o.left) {
				if (left) {
					return -1;
				} else {
					return 1;
				}
			} else {
				if (left) {
					return o.height - height;
				} else {
					return height - o.height;
				}
			}
		}
		
	}
    public List<int[]> getSkyline(int[][] buildings) {
    	List<int[]> res = new ArrayList<>();
    	List<Line> lines = new ArrayList<>();
        for (int i = 0; i < buildings.length; i++) {
        	lines.add(new Line(buildings[i][0], buildings[i][2], true));
        	lines.add(new Line(buildings[i][1], buildings[i][2], false));
		}
        Collections.sort(lines);
        PriorityQueue<Integer> heap = new PriorityQueue<>(11, Collections.reverseOrder());
        for (Line line : lines) {
			if (line.left) {
				heap.add(line.height);
			} else {
				heap.remove(line.height);
			}
			int height = heap.size() == 0 ? 0 : heap.peek();
			if (line.height >= height) {
				int[] tmp = new int[]{line.x, height};
				if (res.size() == 0) {
					res.add(tmp);
				} else {
					int[] last = res.get(res.size()-1);
					if (tmp[1] != last[1]) {
						res.add(tmp);
					}
				}
			}
 		}
        return res;
    }
}

 

2
7
分享到:
评论

相关推荐

    The_C_Programming_Language_经典c语言学习教材(含课后习题答案)

    《C程序设计语言》是C语言的创始人之一Dennis Ritchie和Brian Kernighan共同编写的经典教材,这本书被广大编程爱好者尊称为“K&R”(取两位作者名字的首字母)。这本书深入浅出地介绍了C语言的基础知识、语法特性...

    Programming Interview Problems and Algorithms in Ruby

    Tree Serialization, Finding the Top k Elements of Data Streams, MapReduce, Partial Sorting, the Skyline Problem, DFS, BFS and Topological Sorting of Dags, the Alternative Alphabet and the Phone Words...

    LeetCode最全代码

    # [LeetCode](https://leetcode.com/problemset/algorithms/) ![Language](https://img.shields.io/badge/language-Python%20%2F%20C++%2011-orange.svg) [![License]...

    lrucacheleetcode-leetcode:leetcode

    lru缓存leetcode 力码 大批 152-最大乘积子阵列,169-多数元素,189-旋转阵列,198-房屋强盗 二分法 153-在旋转排序数组(II)中查找最小值,162-...Problem(Mergesort) ) 动态规划 HARD: 174-Dungeon Game, HARD: 188

    SIGMOD 2009 全部论文(2。后12篇)

    Entity Resolution (ER) is an important real world problem that has attracted significant research interest over the past few years. It deals with determining which object descriptions co-refer in a ...

    2019考研英语核心词汇.pdf

    - **例句**: They approached the problem from a scientific perspective. ##### Sensation - **定义**: 名词,指的是感官的感觉,也可以指引起广泛关注或震惊的事件。 - **例句**: The news created a sensation ...

    人教版新目标高中英语选修8词组归纳总结.doc

    - `have a good view of`:好好欣赏……,例如:“From the balcony, we have a good view of the city skyline.”(在阳台上,我们可以一览城市天际线。) - `team up with`:与……合作或一起工作,强调协作。 ...

    leetcode1-240题中文题解,md格式,java

    9. leetcode-218-The-Skyline-Problem.md:第218题,天际线问题,可能涉及到二维数组处理和线段树或平衡二叉搜索树的数据结构。 10. leetcode-115-Distinct-Subsequences.md:第115题,不同的子序列,涉及到动态规划...

    Python_leetcode.zip

    接着是"the-skyline-problem.py",这是一道图形处理和复杂数据结构的题目。城市天际线的构建需要处理大量的二维几何信息,Python的集合、堆和列表等数据结构在此处大显身手,通过高效的算法实现复杂几何形状的抽象和...

Global site tag (gtag.js) - Google Analytics