시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 256 MB2310842.105%

문제

Siggy is quite the video game enthusiast, and he’s been playing lots of Super Mario 169 lately (the highly obscure sequel to the more popular Super Mario 64). This game takes place entirely in an ocean, which can be modelled with a 3 dimensional coordinate system. The player’s objective is to swim around as the titular character, Mario, and collect all of the coins, of which there can be up to 169.

The coins are not simply in plain sight, however! Instead, there are up to 13 switches which Mario can press by touching them. Pressing any switch causes up to 13 coins to appear. Additionally, each switch can only be pressed once, and when it’s pressed, any other uncollected coins (which had been revealed by the previously-pressed switch, if any) disappear, meaning that Mario will be unable to collect them in the future. All switches and coins are small enough that they can be treated as points.

To make sure that he’s playing the game as optimally as possible, Siggy wants to know the minimum possible distance required to collect all of the coins.

입력

There will be several test cases in the input. Each test case will begin with a single line with four integers:

n mx my mz

where n (1≤n≤13) is the number of switches, and the 3D point (mx,my,mz) is Mario’s starting point. 

The following pattern is then repeated n times, once for each switch. The pattern begins with a single line with four integers:

k sx sy sz

where k (1≤k≤13) is the number of coins activated by this switch, and the 3D point (sx,sy,sz) is the point where the switch is found. Following this there will be k lines with three integers:

cx cy cz

where (cx,cy,cz) is the 3D point of one of the coins activated by this switch.

All coordinates x, y, z of all points will be in the range -1,000≤x,y,z≤1,000, and all points in a test case, whether Mario’s starting point, switch or coin, will be unique. The input will end with a line with four 0s.

출력

For each test case, output a single number equal to the minimum distance for Mario to travel in order to collect all of the coins, given to exactly two decimal places, rounded. Output each number on its own line, with no spaces. Do not print any blank lines between outputs.

예제 입력 1

2 5 5 0
4 6 0 0
7 0 0
-11 -1 0
-11 1 0
-10 0 0
2 5 0 0
0 0 0
0 5 0
0 0 0 0

예제 출력 1

44.22