#NAUGHTY. Naughty and Balls

Naughty and Balls

本题没有可用的提交语言。

Mr. Naughty likes to play with balls. So his friend, Mr Nice, gave him n balls to play a game. Each ball has exactly two numbers (the number on the top and the number on the bottom). In one move Mr Naughty can rotate any ball so that its bottom now becomes the top. Mr Nice knows the minimum number of such moves that can make at least half of the balls show same number on their top. So to win Mr Nice's game, Mr Naughty should figure out the minimum number of moves. Its not always possible to make such moves that satisfy the given condition.In this case Mr Naughty should figure out that it is "Impossible" to make such moves.

Help Mr Naughty to win the game.

Input Format:

The first line contains a single integer n - the number of balls. The following n lines contain the description of all balls, one ball per line. Each description has a pair of non-negative integers not exceeding 10^5 - numbers on top and bottom. The first number in a line is the number on top, the second one - on the bottom. The number on the top of the ball may be same as the number on the bottom.
The numbers in the lines are separated by single spaces.

Output Format:

On a single line print a single integer - the minimum number of moves to win the game. If it is impossible to make the set funny, print "Impossible" (quotes for clarity).

Constraints:

1 ≤ n ≤ 10^5

Sample Input:

3
3 100
100 3
5 4

Sample Output:

1

Explanation:

In this case Mr Naughty can rotate the first ball so that number on the top becomes 100. Since two of the three balls have same number on their top (100), you do not need to change anything else, so the answer is 1.

Sample Input:

5 
5 9
5 9
3 2
1 4
5 7

Sample Output:

0

Sample Input:

3
1 2
3 4
5 6 

Sample Output:

Impossible


Problem Setter: Prateek Sachdev