Processing math: 100%
Area - ReimuOJ: Reimu Online Judge

Area

Time limit: 1000 ms
Memory limit: 256 MB
Given n rectangles on a two-dimensional coordinate grid. The rectangles have coordinates of the bottom-left corner as (x1,y1) and the top-right corner as (x2,y2), with their sides parallel to either the x-axis or the y-axis. ### Input - The first line contains an integer n. - The next n lines each contain four integers x1,y1,x2,y2, representing a rectangle with coordinates of the bottom-left corner as (x1,y1) and the top-right corner as (x2,y2). ### Output - Print an integer representing the total area covered by the rectangles. ### Constraints - 1≤n≤105. - 1≤x1,y1,x2,y2≤105. ### Example Input: 3216514584297 Output: 46