★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★
➤微信公衆號:山青詠芝(shanqingyongzhi)
➤博客園地址:山青詠芝(https://www.cnblogs.com/strengthen/)
➤GitHub地址:https://github.com/strengthen/LeetCode
➤原文地址: http://www.javashuo.com/article/p-eecunapp-me.html
➤若是連接不是山青詠芝的博客園地址,則多是爬取做者的文章。
➤原文已修改更新!強烈建議點擊原文地址閱讀!支持做者!支持原創!
★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★html
We are given a list of (axis-aligned) rectangles
. Each rectangle[i] = [x1, y1, x2, y2]
, where (x1, y1) are the coordinates of the bottom-left corner, and (x2, y2) are the coordinates of the top-right corner of the i
th rectangle.git
Find the total area covered by all rectangles
in the plane. Since the answer may be too large, return it modulo 10^9 + 7.github
Example 1:微信
Input: [[0,0,2,2],[1,0,2,3],[1,0,3,1]] Output: 6 Explanation: As illustrated in the picture.
Example 2:app
Input: [[0,0,1000000000,1000000000]] Output: 49 Explanation: The answer is 10^18 modulo (10^9 + 7), which is (10^9)^2 = (-7)^2 = 49.
Note:spa
1 <= rectangles.length <= 200
rectanges[i].length = 4
0 <= rectangles[i][j] <= 10^9
2^63 - 1
and thus will fit in a 64-bit signed integer.咱們給出了一個(軸對齊的)矩形列表 rectangles
。 對於 rectangle[i] = [x1, y1, x2, y2]
,其中(x1,y1)是矩形 i
左下角的座標,(x2,y2)是該矩形右上角的座標。code
找出平面中全部矩形疊加覆蓋後的總面積。 因爲答案可能太大,請返回它對 10 ^ 9 + 7 取模的結果。htm
示例 1:blog
輸入:[[0,0,2,2],[1,0,2,3],[1,0,3,1]] 輸出:6 解釋:如圖所示。
示例 2:get
輸入:[[0,0,1000000000,1000000000]] 輸出:49 解釋:答案是 10^18 對 (10^9 + 7) 取模的結果, 即 (10^9)^2 → (-7)^2 = 49 。
提示:
1 <= rectangles.length <= 200
rectanges[i].length = 4
0 <= rectangles[i][j] <= 10^9
2^63 - 1
,這意味着能夠用一個 64 位有符號整數來保存面積結果。1 class Solution { 2 func rectangleArea(_ rectangles: [[Int]]) -> Int { 3 var M:Int = 1000000007 4 var data:[Point] = [Point]() 5 for r in rectangles 6 { 7 data.append(Point(r[0], r[1], 1)) 8 data.append(Point(r[0], r[3], -1)) 9 data.append(Point(r[2], r[1], -1)) 10 data.append(Point(r[2], r[3], 1)) 11 } 12 data.sort(by:{(a:Point,b:Point) -> Bool in 13 if a.x == b.x {return b.y <= a.y} 14 return a.x < b.x}) 15 var map:[Int:Int] = [Int:Int]() 16 var preX:Int = -1 17 var preY:Int = -1 18 var result:Int = 0 19 for i in 0..<data.count 20 { 21 var p:Point = data[i] 22 map[p.y,default:0] += p.val 23 if i == data.count - 1 || data[i + 1].x > p.x 24 { 25 if preX > -1 26 { 27 result += (preY * (p.x - preX)) % M 28 result %= M 29 } 30 preY = calcY(map) 31 preX = p.x 32 } 33 } 34 return result 35 } 36 37 func calcY(_ p:[Int:Int]) -> Int 38 { 39 var result:Int = 0 40 var pre:Int = -1 41 var count:Int = 0 42 var nums = Set(p.keys).sorted(by:<) 43 for key in nums 44 { 45 if pre >= 0 && count > 0 46 { 47 result += key - pre 48 } 49 count += p[key,default:0] 50 pre = key 51 } 52 return result 53 } 54 } 55 56 class Point 57 { 58 var x:Int 59 var y:Int 60 var val:Int 61 init(_ x:Int,_ y:Int,_ val:Int) 62 { 63 self.x = x 64 self.y = y 65 self.val = val 66 } 67 }