Tasks:
 
Task DescriptionDiscussion (0)
Task :: BOI - Pcb
In a printed circuit board, conductive wires are laid on a non-conductive board. Because the conductors in the same layer cannot cross without creating short-circuits, boards with conductors divided into several layers separated by non-conductive board material are used in more complex cases. However, boards with more layers are more expensive. So, manufacturers try to allocate the required conductors to layers in a way that minimizes the number of layers needed.

In this task we look at boards where each conductor is connecting two ports located on opposite edges of the board and seek to minimize the cost of such a board.

Consider, for example, the board shown on the left on the figure below. If one conductor has to connect A to B and another D to C, this could be achieved in a single layer, as shown in the middle on the figure. But a conductor connecting A to C and another connecting D to B could not be laid out in the same layer, as can be seen on the right on the figure.


Write a program that is given the locations of the endpoints of the N conductors on a W × H board and determines the minimal number of layers needed to accommodate all of them. It may be assumed the width of the conductors is very small compared to the distances between the ports. That is, between any two conductors, there is always enough room for a third one.

INPUT:
The first line contains N (1 <= N <= 10^5), the number of connectors. Each of the following N lines contains two integers, Xi1 and Xi2 (0 <= Xij <= 10^6), separated by a space, meaning that the i-th conductor has to connect the points (Xi1, 0) and (Xi2,H). It may be assumed that all the 2N endpoints given in the input are distinct.

OUTPUT:
The first and only line should contain a single integer, the minimal number of layers needed to accommodate all the required conductors


Input:
2
1 1
3 3

Output:
1

Input:
2
1 3
3 1

Output:
2

Submit Solution
:
:
Available Languages
Task info
Name:BOI - Pcb
Time:1 sec.
Memory:64 MB
#Tests:10
AddedBy: harta01
Source:BOI 2010
Task Ratings
Difficulty:

4.3 (3 votes)
Quality:

5 (2 votes)
Acceptance Rate
Recent Submissions
Fastest Solutions
UserTime
pHeNoM. 0.315 s.
ja_bre 0.33 s.
simpleton 0.345 s.
crusader 0.36 s.
tamaki 0.405 s.
The_Philosopher 0.42 s.
mercedesmwit 0.42 s.
danker 0.42 s.
toppykung 0.42 s.
thepsint 0.435 s.
Solved By