#Lutece0748. Holey Road

Holey Road

Migrated from Lutece 748 Holey Road

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

You are manouvering a tiny remote-controlled car along a road in very bad condition; the road is full of holes. The car is unable to drive over the holes, since it would plunge into the hole and become damaged beyond repair. In addition, driving off the road will cause the car to be forever lost in the tall grass surrounding it.

The car is so small that it can be considered as a point with no spatial extension. The road is WW meters wide and LL meters long, and it runs parallel to the yy-axis. Your car starts at (W2,0)(\frac{W}{2},0) and your destination is (W2,L)(\frac{W}{2},L).All of the holes happen to be perfectly circle-shaped, and none of them intersect or touch other holes or the edges of the road.

You want to take the shortest possible path to the destination. Write a program that calculates the length of such a path.

Input

The first line of the input consists of a single integer TT, the number of test cases. Each test case begins with a line containing three integers N,W,LN,W,L, the number of holes, and the width and the length of the road, respectively. Then follow NN lines each containing three integers xi,yi,rix_i,y_i,r_i representing a hole with center xi,yix_i,y_i and radius rir_i.

Output

For each test case, output the length of the shortest possible path from the starting position to the final position that avoids holes. An error of up to 10610^{-6} will be accepted in the output.

Samples

3
1 50 1000
20 500 5
1 50 1000
25 500 5
3 100 1000
50 50 25
25 150 24
75 150 24
1000.00000000000
1000.05000041668
1009.34797846036

Note

0<T1000 < T \leq 100

0N1000 \leq N \leq 100

0<L10000 < L \leq 1000

0<W1000 < W \leq 100

ri<xi<Wrir_i < x_i < W - r_i

ri<yi<Lrir_i < y_i < L - r_i

$0 < r_i < min(\left \lfloor \frac{W}{2} \right \rfloor, \left \lfloor \frac{L}{2} \right \rfloor)$

Resources

IDI Open Programming Contest April 21st, 2012 - NTNU