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

Security Zone

Security Zone

Ліміт часу 1 секунда
Ліміт використання пам'яті 64 MiB

The manager of a large security company has to build a new surveillance system for different sites. A site consists of N objects where each object has its own security circle. At the border of the surveillance system a high voltage fence has to be installed. The security zone inside of the fence has to be connected. Furthermore, all objects and their security circles should be inside the security zone. The security circles of different objects will never overlap or touch. Now the manager needs your help. He asks you for the minimal needed fence length.

Figure 1 - Illustration of first and second sample input.

Вхідні дані

The first line of the input gives the number of test cases C (0C100). The first line of each such test case holds the integer N: the number of objects in the current site (0 < N25). Each of the following N lines holds three integers x_i, y_i, and r_i that describe an object. The coordinates of the i-th object and the radius for the needed security circle for this object. (|x_i|,|y_i|100, 0 < r_i100) (The center of the security circle around an object is the position of the object itself.)

Вихідні дані

For each test case print one line containing the minimal fence length for this case. Your output should have an absolute or relative error of at most 10^{-7}.

Приклад

Вхідні дані #1
3
3
2 2 1
8 2 1
5 6 1
2
6 4 2
2 4 1
4
2 2 2
6 1 1
5 5 2
1 6 1
Вихідні дані #1
22.2831853072
17.6761051635
25.4247779608
Джерело ACM ICPC German Collegiate Programming Contest 2011