eolymp
bolt
Спробуйте наш новий інтерфейс для відправки розв'язків
Задачі

Spherical Mirrors

Spherical Mirrors

\textit{A long time ago in a galaxy, far, far away, there were N spheres with various radii.} \textit{Spheres were mirrors, that is, they had re ective surfaces ...} You are standing at the origin of the galaxy \textbf{(0, 0, 0)}, and emit a laser ray to the direction \textbf{(u, v, w)}. The ray travels in a straight line. \includegraphics{https://static.e-olymp.com/content/db/db67b9caf511f304f29962c04b6f341c90a036cb.jpg} \includegraphics{https://static.e-olymp.com/content/db/db67b9caf511f304f29962c04b6f341c90a036cb.jpg} When the laser ray from \textbf{I} hits the surface of a sphere at \textbf{Q}, let \textbf{N} be a point outside of the sphere on the line connecting the sphere center and \textbf{Q}. The reflected ray goes to the direction towards \textbf{R} that satisfies the following conditions: (1) \textbf{R} is on the plane formed by the three points \textbf{I}, \textbf{Q} and \textbf{N}, (2) \textbf{IQN} = \textbf{NQR}, as shown in \textit{\textbf{Figure 1}}. \includegraphics{https://static.e-olymp.com/content/f2/f25474af07921b1673668a9813cc8017463b6c3e.jpg} \textit{\textbf{Figure 1}}: Laser ray reflection After it is reflected several times, finally it goes beyond our observation. Your mission is to write a program that identifies the last reflection point. \InputFile The input consists of multiple datasets, each in the following format. \textbf{N} \textbf{u v w} \textbf{x_1 y_1 z_1 r_1} \textbf{...} \textbf{x_N y_N z_N r_N} The first line of a dataset contains a positive integer \textbf{N} which is the number of spheres. The next line contains three integers \textbf{u}, \textbf{v} and \textbf{w} separated by single spaces, where \textbf{(u, v, w)} is the direction of the laser ray initially emitted from the origin. Each of the following \textbf{N} lines contains four integers separated by single spaces. The \textbf{i}-th line corresponds to the \textbf{i}-th sphere, and the numbers represent the center position \textbf{(x_i, y_i, z_i)} and the radius \textbf{r_i}. \textbf{N}, \textbf{u}, \textbf{v}, \textbf{w}, \textbf{x_i}, \textbf{y_i}, \textbf{z_i} and \textbf{r_i} satisfy the following conditions. \textbf{1} ≤ \textbf{N} ≤ \textbf{100} \textbf{−100} ≤ \textbf{u}, \textbf{v}, \textbf{w} ≤ \textbf{100} \textbf{−100} ≤ \textbf{x_i}, \textbf{y_i}, \textbf{z_i} ≤ \textbf{100} \textbf{5} ≤ \textbf{r_i} ≤ \textbf{30} \textbf{u^2 + v^2 + w^2} > \textbf{0} You can assume that the distance between the surfaces of any two spheres is no less than \textbf{0.1}. You can also assume that the origin \textbf{(0, 0, 0)} is located outside of any sphere, and is at least \textbf{0.1} distant from the surface of any sphere. The ray is known to be reflected by the sphere surfaces at least once, and at most five times. You can assume that the angle between the ray and the line connecting the sphere center and the reflection point, which is known as the angle of reflection (i.e. \textit{\textbf{θ}} in \textit{\textbf{Figure 1}}), is less than \textbf{85} degrees for each point of reflection. The last dataset is followed by a line containing a single zero. \OutputFile For each dataset in the input, you should print the \textbf{x}-, \textbf{y}- and \textbf{z}-coordinates of the last reflection point separated by single spaces in a line. No output line should contain extra characters. No coordinate values in the output should have an error greater than \textbf{0.01}.
Ліміт часу 1 секунда
Ліміт використання пам'яті 64 MiB
Вхідні дані #1
3 
-20 -20 -24 
100 100 100 30 
10 8 3 5 
-70 -70 -84 5 
4 
0 47 84 
-23 41 42 8 
45 -10 14 19 
-5 28 47 12 
-27 68 34 14 
0
Вихідні дані #1
79.0940 79.0940 94.9128 
-21.8647 54.9770 34.1761
Джерело Asia Regional Contest, Japan, AIZU, October 25-27, 2008