#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 NN boys and MM girls. He gives every boy here a unique number NiN_i(1NiN1 \leq N_i \leq N). And for the girl, everyone holds a unique number MiM_i(1MiM1 \leq M_i \leq M), too.

Now when Bob name a number XX, if a boy and a girl wants and their numbers' sum equals to XX, they can get in pair and dance.

At this night, Bob will name QQ 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 TT(1T301 \leq T \leq 30), indicating there are TT test cases.

The first line of each test case contains two numbers NN and MM(1N,M1000001 \leq N,M \leq 100000).

The second line contains a single number QQ(1Q1000001 \leq Q \leq 100000).

Each of the next QQ lines contains one number XX(0X1090 \leq X \leq 10^9), 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 11.

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