#Lutece0635. Try
Try
Migrated from Lutece 635 Try
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
After beating Hierarch of Baiyue, Xiaoyao went back to his home (Shengyu Cun). And every kid in the country thought the skill "Yu Jian Fei Xing"(御剑飞行) is very cool, so they often asked Xiaoyao flying above the clouds with them.
Today, several kids want to fly to their own favourite place from their home. But the lazy Xiaoyao tell them: "I will just stop at one certain place during my flying, and I will minimize the total cost of travelling without flying."
We assume that all of the places in this problem are lying on a same line, and the places are labeled with and the home of Xiaoyao and the kids is always labeled with . Given the cost of travelling without flying between every pair of adjacent place, can you determine the total cost of those kids?
Input
The first line of the input contains a single integer (), indicates there are test cases.
For each test case, the first line contains a single integer (), indicates there are places in this world.
Then, integers in a line, indicates the cost of travelling without flying between every pair of adjacent place(). For example, the first integer is the cost of travelling without flying between their home and the place, and the second integer is the cost of travelling without flying between the place and the place.
Then, a line contains a single integer (), indicates there are kids will fly with Xiaoyao.
The last line contains a single integer (), indicates the favourite place for every kid.
Output
For each test case, first output Case #C:
, means the number of the test case which is counted from to .
Then output the answer, the minimal total cost of travelling without flying of those kids.
Samples
2
4
1 3 2
5
1 2 3 2 2
5
3 1 2 4
5
2 3 4 4 3
Case #1: 5
Case #2: 10
Note
- Remeber that the stop is at one certain place. That is to say, the place are potential stop.
- If someone want to travel without flying from to ( Explanation: For Sample , Xiaoyao will stop at the place, and the kids who want to go to the place will cost , and the kid who want to place will cost and the kid who want to place will cost . So total cost is , and it's minimal. For Sample , Xiaoyao will stop at the place.
Huge input, scanf
is recommend instead of cin
.
Resources
pfctgeorge