#Lutece0427. Free Candies
Free Candies
Migrated from Lutece 427 Free Candies
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Little Bob is playing a game. He wants to win some candies in it - as many as possible.
There are piles, each pile contains candies. Bob is given a basket which can hold at most candies. Each time, he puts a candy at the top of one pile into the basket, and if there're two candies of the same color in it , he can take both of them outside the basket and put them into his own pocket. When the basket is full and there are no two candies of the same color, the game ends. If the game is played perfectly, the game will end with no candies left in the piles.
For example, Bob may play this game like this ():
Note that different numbers indicate different colors; there are kinds of colors numbered .
'Seems so hard...' Bob got very much puzzled. How many pairs of candies could he take home at most?
Input
The input will contain no more than test cases. Each test case begins with a line containing a single integer () representing the height of the piles. In the following lines, each line contains four integers , , , (in the range ). Each integer indicates the color of the corresponding candy. The test case containing will terminate the input, you should not give an answer to this case.
Output
Output the number of pairs of candies that the cleverest little child can take home. Print your answer in a single line for each test case.
Samples
5
1 2 3 4
1 5 6 7
2 3 3 3
4 9 8 6
8 7 2 1
1
1 2 3 4
3
1 2 3 4
5 6 7 8
1 2 3 4
0
8
0
3
Resources
OIBH Online Programming Contest #1