#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 , function equals the sum of all numbers in . For example, . Miss Xue thinks that the mean of function for all potential reconstruct methods may help her somewhat.
Please tell her answers to the above two questions.
Input
First an integer , indicates the number of test cases.
Every test case begins with three integers , . is the length of the original sequence, and represents numbers available. The following two lines give two list of numbers, , . The number’s original location is , and its value is . It is guaranteed that and are non-decreasing. At the same time, the first one is located at 1 and the last one is located at .
;
;
, ;
;
$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 indicates the case number and counts from . Then output the number of ways to rebuild the sequence, modulo , 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