8651: DSL_5_B : The Maximum Number of Overlaps
[Creator : ]
Description
Given a set of $N$ axis-aligned rectangular seals, find the number of overlapped seals on the region which has the maximum number of overlapped seals.
Input
The input is given in the following format.
$N$
$x1_1\ y1_1\ x2_1\ y2_1$
$x1_2\ y1_2\ x2_2\ y2_2$
$:$
$x1_N\ y1_N\ x2_N\ y2_N$
$(x1_i,y1_i)$ and $(x2_i,y2_i)$ are the coordinates of the top-left and the bottom-right corner of the i-th seal respectively.
Output
Print the maximum number of overlapped seals in a line.
Constraints
$1≤N≤100,000$
$0≤x1_i<x2_i≤1,000$
$0≤y1_i<y2_i≤1,000$
$x1_i,y1_i,x2_i,y2_i$ are given in integers
$0≤x1_i<x2_i≤1,000$
$0≤y1_i<y2_i≤1,000$
$x1_i,y1_i,x2_i,y2_i$ are given in integers
Sample 1 Input
2
0 0 3 2
2 1 4 3
Sample 1 Output
2
Sample 2 Input
2
0 0 2 2
2 0 4 2
Sample 2 Output
1
Sample 3 Input
3
0 0 2 2
0 0 2 2
0 0 2 2
Sample 3 Output
3
HINT
相同题目:DSL_5_B。