Problem C
Pop!
A large number of helium balloons have been set up as part
of a carnival game. Players shoot a pellet gun into the
balloons and earn a point for every balloon they pop. Each
balloon is spherical and is tied to a string at the bottom.
Each string is taped to a table top at a particular location.
Gunshots are described by giving a three-dimensional location,
![\includegraphics[width=0.3\textwidth ]{balloons.png}](/problems/pop/file/statement/en/img-0001.png)
We assume that the pellet is very small and travels in a perfectly straight line when fired. It pops any balloon it passes through. The strings tied to the balloons are so thin that they are never hit by the pellet.
Input
Input contains up to
The balloon descriptions are followed by a line containing
an integer
You can be assured that the tip of the barrel is not inside
any balloon and that no balloons intersect. Also, no string
from one balloon touches any other balloon and the direction
vector for the gun always has positive length. All real numbers
have at most
Output
For each shot in a test case, output the number of points earned by that shot.
Sample Input 1 | Sample Output 1 |
---|---|
5 1.0 4.0 0.0 0.0 1.5 3.5 0.0 8.0 1.5 3.5 0.0 -8.0 1.5 3.5 8.0 0.0 1.5 3.5 -8.0 0.0 3 1.0 -10.0 4.5 0 1 0 0.8 -10.0 5.0 0 1 0 -10.0 0.0 5.0 1 0 0 2 1.0 5.0 0.0 10.0 1.0 3.0 0.0 -10.0 1 0.0 0.0 5.0 0.0 1.0 0.1 0 |
2 1 2 1 |