Baltic Olympiad in Informatics: 2010 Day 1, Problem 3
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
Write a program that is given the locations of the endpoints of the
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.
Constraints
Input Specification
The first line of input contains
Output Specification
Output a single integer, the minimal number of layers needed to accommodate all the required conductors.
Sample Input 1
2
1 1
3 3
Sample Output 1
1
Sample Input 2
2
1 3
3 1
Sample Output 2
2
Explanation for Sample Output 2
This is the same situation as the rightmost PCB on the image above.
Comments