#Lutece0488. Rebuild the Sequence

Rebuild the Sequence

Migrated from Lutece 488 Rebuild the Sequence

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

Because of the good management, Miss Xue’s kindergarten attracts a lot of children coming to attend it. She is happy to count the number of children in her kindergarten since it never decreases.

As you know, being with a lot of children means trouble. The most naughty one, Lily, poured her coffee onto Miss Xue’s chart which recording the sequence of the numbers of children in the kindergarten on each day. Some data on the chart could not be recognized now.

Poor Miss Xue comes to you for help. Given the data remaining available, in which the numbers of children on the first and last day are still remembered by Miss Xue, she wants to know how many ways to reconstruct the sequence.

What’s more, in order to obtain more information about the unknown original sequence, Miss Xue defined a function S for each potential reconstruction method. For a specific sequence AA, function S(A)S(A) equals the sum of all numbers in AA. For example, S(1,2,9,10,15)=1+2+9+10+15=37S(1,2,9,10,15) = 1+2+9+10+15 = 37. Miss Xue thinks that the mean of function SS for all potential reconstruct methods may help her somewhat.

Please tell her answers to the above two questions.

Input

First an integer TT, indicates the number of test cases.

Every test case begins with three integers NN, MM. NN is the length of the original sequence, and MM represents numbers available. The following two lines give two list of MM numbers, A[1M]A[1\cdots M], B[1M]B[1\cdots M]. The ithi_{th} number’s original location is AiA_i, and its value is BiB_i. It is guaranteed that AA and BB are non-decreasing. At the same time, the first one is located at 1 and the last one is located at NN.

T100T \leq 100;

2N1,000,0002 \leq N \leq 1,000,000;

2M1,0002 \leq M \leq 1,000, MNM \leq N;

1=A1<A2<<AM=N1 = A_1 < A_2 < \cdots < A_M = N;

$0 \leq B_1 \leq B_2 \leq \cdots \leq B_M \leq 1,000,000$.

Output

For every test case, you should output Case #k: first, where kk indicates the case number and counts from 11. Then output the number of ways to rebuild the sequence, modulo 1,000,000,0091,000,000,009, and their mean, rounded to three digits after the decimal point, in the format shown in sample output.

Samples

2
6 6
1 2 3 4 5 6
3 5 10 15 20 20
6 5
1 2 3 5 6
3 5 10 20 20
Case #1: 1 73.000
Case #2: 11 73.000

Resources

Sichuan State Programming Contest 2011