#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 1,2,3,N11,2,3,\cdots N-1 and the home of Xiaoyao and the kids is always labeled with 00. 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 TT(T50T\leq 50), indicates there are TT test cases.

For each test case, the first line contains a single integer NN(4N1000004\leq N\leq 100000), indicates there are NN places in this world.

Then, N1N-1 integers in a line, indicates the cost of travelling without flying between every pair of adjacent place(1cost10001\leq cost\leq 1000). For example, the first integer is the cost of travelling without flying between their home and the 1st1_{st} place, and the second integer is the cost of travelling without flying between the 1st1_{st} place and the 2nd2_{nd} place.

Then, a line contains a single integer MM(1M1000001\leq M\leq 100000), indicates there are MM kids will fly with Xiaoyao.

The last line contains a single integer XX(1XN11\leq X\leq N-1), indicates the favourite place for every kid.

Output

For each test case, first output Case #C: , CC means the number of the test case which is counted from 11 to TT.

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

  1. Remeber that the stop is at one certain place. That is to say, the place 1,2N11,2\cdots N-1 are potential stop.
  2. If someone want to travel without flying from SS to TT(SS Explanation: For Sample 11, Xiaoyao will stop at the 2nd2_{nd} place, and the 33 kids who want to go to the 2nd2_{nd} place will cost 00, and the kid who want to 1st1_{st} place will cost 33 and the kid who want to 3rd3_{rd} place will cost 22. So total cost is 55, and it's minimal. For Sample 22, Xiaoyao will stop at the 3rd3_{rd} place.

Huge input, scanf is recommend instead of cin.

Resources

pfctgeorge