#Lutece0085. Counting Pair
Counting Pair
Migrated from Lutece 85 Counting Pair
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
Bob hosts a party and invites boys and girls. He gives every boy here a unique number (). And for the girl, everyone holds a unique number (), too.
Now when Bob name a number , if a boy and a girl wants and their numbers' sum equals to , they can get in pair and dance.
At this night, Bob will name numbers, and wants to know the maxinum pairs could dance in each time. Can you help him?
Input
First line of the input is a single integer (), indicating there are test cases.
The first line of each test case contains two numbers and ().
The second line contains a single number ().
Each of the next lines contains one number (), indicating the number Bob names.
Output
For each test case, print Case #t:
first, in which t is the number of the test case starting from .
Then for each number Bob names, output a single num in each line, which shows the maxinum pairs that could dance together.
Samples
1
4 5
3
1
2
3
Case #1:
0
1
2
Note
This problem has very large input data. scanf and printf are recommended for C++ I/O.
Resources
Sichuan State Programming Contest 2012