#Lutece0833. How Long Do You Have to Draw

How Long Do You Have to Draw

Migrated from Lutece 833 How Long Do You Have to Draw

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

There are two horizontal lines on the XoYXoY plane. One is y1=ay_1 = a, the other is y2=by_2 = b(a<ba < b). On line y1y_1, there are NN points from left to right, the x-coordinate of which are x=c1,c2,cNx = c_1, c_2, \cdots c_N (c1<c2<<cNc_1 < c_2 < \cdots < c_N) respectively. And there are also MM points on line y2y_2 from left to right. The x-coordinate of the MM points are x=d1,d2,dMx = d_1, d_2, \cdots d_M (d1<d2<<dMd_1 < d_2 < \cdots < d_M) respectively.

Now you can draw segments between the points on y1y_1 and y2y_2 by some segments. Each segment should exactly connect one point on y1y_1 with one point on y2y_2.

The segments cannot cross with each other. By doing so, these segments, along with y1y_1 and y2y_2, can form some triangles, which have positive areas and have no segments inside them.

The problem is, to get as much triangles as possible, what is the minimum sum of the length of these segments you draw?

Input

The first line has a number TT (T20T \leq 20) , indicating the number of test cases.

For each test case, first line has two numbers aa and bb (0a0 \leq a, b104b \leq 10^4), which is the position of y1y_1 and y2y_2.

The second line has two numbers NN and MM (1N1 \leq N, M105M \leq 10^5), which is the number of points on y1y_1 and y2y_2.

The third line has NN numbers c1,c2,,cNc_1, c_2, \cdots , c_N(0ci<ci+11060 \leq c_i < c_{i+1} \leq 10^6), which is the xx-coordinate of the NN points on line y1y_1.

The fourth line has MM numbers d1,d2,,dMd_1, d_2, \cdots , d_M(0di<di+11060 \leq d_i < d_{i+1} \leq 10^6), which is the xx-coordinate of the MM points on line y2y_2.

Output

For test case XX, output Case #X: first, then output one number, rounded to 0.010.01, as the minimum total length of the segments you draw.

Samples

1
0 1
2 3
1 3
0 2 4
Case #1: 5.66

Resources

2013 ACM-ICPC China Chengdu Provincial Programming Contest