大家来讨论一下这个求长方形面积的问题吧# JobHunting - 待字闺中
b*n
1 楼
Given a group of rectangles whose edges are parallel to X-axis or Y-axis,
find the total area they cover.
想到line sweep的办法,不过好像时间复杂度是n^2, 想不出nlogn的办法。搜了一下,
发现这个:
http://codercareer.blogspot.com/2011/12/no-27-area-of-rectangle
也是O(n^2)时间的。
find the total area they cover.
想到line sweep的办法,不过好像时间复杂度是n^2, 想不出nlogn的办法。搜了一下,
发现这个:
http://codercareer.blogspot.com/2011/12/no-27-area-of-rectangle
也是O(n^2)时间的。