eolymp
bolt
Try our new interface for solving problems
Problems

The Worm in the Apple

The Worm in the Apple

Time limit 20 seconds
Memory limit 64 MiB

Willy the Worm was living happily in an apple – until some vile human picked the apple, and started to eat it! Now, Willy must escape!

Given a description of the apple (defined as a convex shape in 3D space), and a list of possible positions in the apple for Willy (defined as 3D points), determine the minimum distance Willy must travel to get to the surface of the apple from each point.

Input data

There will be several test cases in the input. Each test case will begin with a line with a single integer n (4n1000), which tells the number of points describing the apple.

On the next n lines will be three integers x, y and z (-10000x, y, z10000), where each point (x, y, z) is either on the surface of, or within, the apple. The apple is the convex hull of these points. No four points will be coplanar.

Following the description of the apple, there will be a line with a single integer q (1q100000), which is the number of queries – that is, the number of points where Willy might be inside the apple. Each of the following q lines will contain three integers x, y and z (-10000x, y, z10000), representing a point (x, y, z) where Willy might be. All of Willy’s points are guaranteed to be inside the apple. The input will end with a line with a single 0.

Output data

For each query, output a single floating point number, indicating the minimum distance Willy must travel to exit the apple. Output this number with exactly 4 decimal places of accuracy, using standard 5 up / 4 down rounding (e.g.2.12344 rounds to 2.1234, 2.12345 rounds to 2.1235). Output each number on its own line, with no spaces, and do not print any blank lines between answers.

Examples

Input example #1
6
0 0 0
100 0 0
0 100 0
0 0 100
20 20 20
30 20 10
4
1 1 1
30 30 35
7 8 9
90 2 2
0
Output example #1
1.0000
2.8868
7.0000
2.0000
Source The University of Chicago Invitational Programming Contest 2012 15 April 2012