#arc092a. [arc092_a]2D Plane 2N Points
[arc092_a]2D Plane 2N Points
Problem Statement
On a two-dimensional plane, there are red points and blue points. The coordinates of the -th red point are , and the coordinates of the -th blue point are .
A red point and a blue point can form a friendly pair when, the -coordinate of the red point is smaller than that of the blue point, and the -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.
- are all different.
- are all different.
Input
Input is given from Standard Input in the following format:
Output
Print the maximum number of friendly pairs.
Sample Input 1
3
2 0
3 1
1 3
4 2
0 4
5 5
Sample Output 1
2
For example, you can pair and , then and .
Sample Input 2
3
0 0
1 1
5 2
2 3
3 4
4 5
Sample Output 2
2
For example, you can pair and , then and .
Sample Input 3
2
2 2
3 3
0 0
1 1
Sample Output 3
0
It is possible that no pair can be formed.
Sample Input 4
5
0 0
7 3
2 2
4 8
1 6
8 5
6 9
5 4
9 1
3 7
Sample Output 4
5
Sample Input 5
5
0 0
1 1
5 5
6 6
7 7
2 2
3 3
4 4
8 8
9 9
Sample Output 5
4