2816. Viva Confetti

单点时限: 2.0 sec

内存限制: 256 MB

Do you know confetti? They are small discs of colored paper, and people throw them around during parties or festivals. Since people throw lots of confetti, they may end up stacked one on another, so there may be hidden ones underneath.

A handful of various sized confetti have been dropped on a table. Given their positions and sizes, can you tell us how many of them you can see?

The following figure represents the disc configuration for the first sample input, where the bottom disc is still visible.

输入格式

The input is composed of a number of configurations of the following form.

$n \
x_1 \ y_1 \ r_1 \
x_2 \ y_2 \ r_2 \
\vdots \
x_n \ y_n \ r_n$

The first line in a configuration is the number of discs in the configuration (a positive integer not more than $100$), followed by one Ine descriptions of each disc: coordinates of its center and radius, expressed as real numbers in decimal notation, with up to $12$ digits after the decimal point. The imprecision margin is $\pm 5 \cdot 10^{−13}$. That is, it is guaranteed that variations of less than $\pm 5 \cdot 10^{−13}$ on input values do not change which discs are visible. Coordinates of all points contained in discs are
between $-10$ and $10$.

Confetti are listed in their stacking order, $x_1 \ y_1 \ r_1$ being the bottom one and $x_n \ y_n \ r_n$ the top one.

You are observing from the top.

The end of the input is marked by a zero on a single line.

输出格式

For each configuration you should output the number of visible confetti on a single line.

样例

Input
3
0 0 0.5
-0.9 0 1.00000000001
0.9 0 1.00000000001
5
0 1 0.5
1 1 1.00000000001
0 2 1.00000000001
-1 1 1.00000000001
0 -0.00001 1.00000000001
5
0 1 0.5
1 1 1.00000000001
0 2 1.00000000001
-1 1 1.00000000001
0 0 1.00000000001
2
0 0 1.0000001
0 0 1
2
0 0 1
0.00000001 0 1
0
Output
3
5
4
2
2

3 人解决,3 人已尝试。

3 份提交通过,共有 4 份提交。

7.1 EMB 奖励。

创建: 7 年,1 月前.

修改: 6 年,6 月前.

最后提交: 9 月,1 周前.

来源: Japan

题目标签