An overnight dance in discotheque

题意翻译

有 $n$ 个圆,他们只能是相互包含,相离或者相切的。 将其分为两组,每组中,只有奇数次覆盖的才会算入面积,求可能的最大面积。

题目描述

The crowdedness of the discotheque would never stop our friends from having fun, but a bit more spaciousness won't hurt, will it? The discotheque can be seen as an infinite $ xy $ -plane, in which there are a total of $ n $ dancers. Once someone starts moving around, they will move only inside their own movement range, which is a circular area $ C_{i} $ described by a center $ (x_{i},y_{i}) $ and a radius $ r_{i} $ . No two ranges' borders have more than one common point, that is for every pair $ (i,j) $ ( $ 1<=i&lt;j<=n $ ) either ranges $ C_{i} $ and $ C_{j} $ are disjoint, or one of them is a subset of the other. Note that it's possible that two ranges' borders share a single common point, but no two dancers have exactly the same ranges. Tsukihi, being one of them, defines the spaciousness to be the area covered by an odd number of movement ranges of dancers who are moving. An example is shown below, with shaded regions representing the spaciousness if everyone moves at the same time. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF814D/5a49565ef74e61d7b40ab12eaa412e67e7b6d97c.png)But no one keeps moving for the whole night after all, so the whole night's time is divided into two halves — before midnight and after midnight. Every dancer moves around in one half, while sitting down with friends in the other. The spaciousness of two halves are calculated separately and their sum should, of course, be as large as possible. The following figure shows an optimal solution to the example above. ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF814D/8da25989c38168302d4efff7470ec1e71f4e2366.png)By different plans of who dances in the first half and who does in the other, different sums of spaciousness over two halves are achieved. You are to find the largest achievable value of this sum.

输入输出格式

输入格式


The first line of input contains a positive integer $ n $ ( $ 1<=n<=1000 $ ) — the number of dancers. The following $ n $ lines each describes a dancer: the $ i $ -th line among them contains three space-separated integers $ x_{i} $ , $ y_{i} $ and $ r_{i} $ ( $ -10^{6}<=x_{i},y_{i}<=10^{6} $ , $ 1<=r_{i}<=10^{6} $ ), describing a circular movement range centered at $ (x_{i},y_{i}) $ with radius $ r_{i} $ .

输出格式


Output one decimal number — the largest achievable sum of spaciousness over two halves of the night. The output is considered correct if it has a relative or absolute error of at most $ 10^{-9} $ . Formally, let your answer be $ a $ , and the jury's answer be $ b $ . Your answer is considered correct if ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF814D/103fdd279ae1fcd52ca9e69b75914ca39dd93497.png).

输入输出样例

输入样例 #1

5
2 1 6
0 4 1
2 -1 3
1 -2 1
4 -1 1

输出样例 #1

138.23007676

输入样例 #2

8
0 0 1
0 0 2
0 0 3
0 0 4
0 0 5
0 0 6
0 0 7
0 0 8

输出样例 #2

289.02652413

说明

The first sample corresponds to the illustrations in the legend.