Hide

Problem K
The Agglomerator

In this problem, we are simulating the dynamics of moving objects. The objects are droplets that are modeled in two dimensions as circles of various sizes, each moving at a constant velocity. When two circles touch they combine (i.e., agglomerate) into a single circular droplet with an area equal to the sum of the areas of the two combining droplets. The newly formed droplet’s position is the area-weighted average position of the two droplets at the time of contact and its velocity is the area-weighted average velocity of the two circles. (See the following example.)

/problems/agglomerator/file/statement/en/img-0001.png
The figure to the right illustrates the process of agglomeration. In the top panel of that figure, we see the leftmost droplet with radius $4$ centered at position $(-14,0)$ and with velocity $(1,0)$ moving toward a stationary droplet of radius $3$ centered at the origin. The two droplets make contact at time $t=7.0$ as shown in the middle panel of the figure.

The droplet with radius $4$ is centered at $(-7,0)$ at the time that the two droplets agglomerate into a single new droplet. The two original droplets have areas $16\pi $ and $9\pi $, respectively, and thus the new droplet has area $25\pi $ and thus radius $5$. The $x$-coordinate of the aggolomerated droplet is equal to $\frac{16}{25} \cdot (-7.0) + \frac{9}{25} \cdot 0.0 = -4.48$. The $y$-coordinate is $\frac{16}{25} \cdot 0.0 + \frac{9}{25} \cdot 0.0 = 0.0$. By similar calculations, the velocity of the aggolomeration is $(0.64, 0)$.

Given an initial configuration of droplets, your goal is to simulate their motion until reaching the final time at which an agglomeration occurs (if any). All test sets have been crafted to assure that:

  • The original droplets do not touch each other.

  • When a new droplet is formed from an agglomeration, the new droplet will not immediately be touching any other droplets. (In fact, it will be at least $0.001$ away from any other droplets.)

  • No two droplets will ever pass each other with only a single point of intersection. (In fact, changing the radius of any drop by $\pm 0.001$ will not effect whether it collides with another.)

  • No two pairs of droplets will ever collide at precisely the same time. (In fact, all agglomerations will be separated in time by at least $0.001$.)

  • No agglomerations will occur beyond time $t=10^9$.

Input

The input consists of a description of the original configuration. The first line contains the original number of droplets, $2 \leq N \leq 100$. This is followed by $N$ lines of data, each containing five integers, $x$, $y$, $v_ x$, $v_ y$, $r$, respectively specifying the $x$-coordinate of the center, the $y$-coordinate of the center, the $x$-component of the velocity, the $y$-component of the velocity, and the radius. These quantities are bounded such that $-10\, 000 \leq x,y,v_ x,v_ y \leq 10\, 000$ and $1 \leq r \leq 100$.


Output

Output a single line with two values $k$ and $t$, where $k$ is the number of droplets in the final configuration and $t$ is the time at which the final agglomeration occurred. If a data set results in no agglomerations, $k$ will be the original number of droplets and $0$ should be reported as the time. The value of time should be reported to have an absolute or relative error of no more than $10^{-3}$.

Sample Input 1 Sample Output 1
2
-2 0 2 0 1
2 0 0 0 1
1 1.0
Sample Input 2 Sample Output 2
2
-2 0 -2 0 1
2 0 -2 1 1
2 0.0
Sample Input 3 Sample Output 3
4
-8 0 2 -2 2
0 -8 -2 2 2
2 8 0 -4 3
8 2 -4 0 3
1 2.0
Sample Input 4 Sample Output 4
4
-8 3 3 0 2
-2 4 2 0 2
2 -2 2 0 2
8 -2 0 0 2
1 5.78474956

Please log in to submit a solution to this problem

Log in