#ARC092A. [ABC091C] 2D Plane 2N Points

[ABC091C] 2D Plane 2N Points

Score : 400400 points

Problem Statement

On a two-dimensional plane, there are NN red points and NN blue points. The coordinates of the ii-th red point are (ai,bi)(a_i, b_i), and the coordinates of the ii-th blue point are (ci,di)(c_i, d_i).

A red point and a blue point can form a friendly pair when, the xx-coordinate of the red point is smaller than that of the blue point, and the yy-coordinate of the red point is also smaller than that of the blue point.

At most how many friendly pairs can you form? Note that a point cannot belong to multiple pairs.

Constraints

  • All input values are integers.
  • 1N1001 \leq N \leq 100
  • 0ai,bi,ci,di<2N0 \leq a_i, b_i, c_i, d_i < 2N
  • a1,a2,...,aN,c1,c2,...,cNa_1, a_2, ..., a_N, c_1, c_2, ..., c_N are all different.
  • b1,b2,...,bN,d1,d2,...,dNb_1, b_2, ..., b_N, d_1, d_2, ..., d_N are all different.

Input

Input is given from Standard Input in the following format:

NN

a1a_1 b1b_1

a2a_2 b2b_2

::

aNa_N bNb_N

c1c_1 d1d_1

c2c_2 d2d_2

::

cNc_N dNd_N

Output

Print the maximum number of friendly pairs.

3
2 0
3 1
1 3
4 2
0 4
5 5
2

For example, you can pair (2,0)(2, 0) and (4,2)(4, 2), then (3,1)(3, 1) and (5,5)(5, 5).

3
0 0
1 1
5 2
2 3
3 4
4 5
2

For example, you can pair (0,0)(0, 0) and (2,3)(2, 3), then (1,1)(1, 1) and (3,4)(3, 4).

2
2 2
3 3
0 0
1 1
0

It is possible that no pair can be formed.

5
0 0
7 3
2 2
4 8
1 6
8 5
6 9
5 4
9 1
3 7
5
5
0 0
1 1
5 5
6 6
7 7
2 2
3 3
4 4
8 8
9 9
4