D. An overnight dance in discotheque

来源:互联网 发布:php gzip 解压缩 编辑:程序博客网 时间:2024/05/18 12:37

D. An overnight dance in discotheque
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 Ci described by a center (xi, yi) and a radius riNo two ranges' borders have more than one common point, that is for every pair (i, j) (1 ≤ i < j ≤ n) either ranges Ci and Cj 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.

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.

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.

Input

The first line of input contains a positive integer n (1 ≤ n ≤ 1 000) — the number of dancers.

The following n lines each describes a dancer: the i-th line among them contains three space-separated integers xiyi and ri( - 106 ≤ xi, yi ≤ 1061 ≤ ri ≤ 106), describing a circular movement range centered at (xi, yi) with radius ri.

Output

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 .

Examples
input
52 1 60 4 12 -1 31 -2 14 -1 1
output
138.23007676
input
80 0 10 0 20 0 30 0 40 0 50 0 60 0 70 0 8
output
289.02652413

思维题,让你计算覆盖奇数次的圆的面积和的最大值。你可以把一个圆移动到另外一个坐标系中。

其实我们可以画图想一下,首先就是没有圆包含的圆,我们记为树根,层数为0。很明显这个圆的面积必定是要加的。

然后我们看第一层的那些圆,要么移动,要么不移动。移动的话就是加上第一层的那些圆的面积,然后第二层的面积必定是要减得。而不移动的话这第一层的面积就需要减掉。但是第二层的面积就可以选择加上了。很明显这样是不划算的,因为层数越向上(小)面积越大的。所以我们把第二层的放到另外一个坐标系去就可以了。

画一画图会发现,第一层移动不移动改变的是第一层和第二层的加减号。

说白了,如果不存在第二个坐标系,按照层数应该是+-+-+-+-......

然后存在第二个坐标系后你可以把其中一个减号变成加号像这样+-......++-+-+-....。

然后其实就是-(a-b)和+(a-b)的区别因为a-b必定大于0,所以,我们应该第一次就变号。

所以最优的就是把第一层也加上。然后后面层数判断奇偶性就可以了奇加偶减就可以了。

#include <bits/stdc++.h>using namespace std;const int MAXN = 1e3+7;const int inf = 1e9;const double pi = acos(-1);int n,m;struct node{    double x,y,r;    int num = 0;}p[MAXN];bool check(int i,int j){    double d = hypot(p[i].x-p[j].x,p[i].y-p[j].y);    if(p[j].r - p[i].r >= d)return 1;    return 0;}int main(){    scanf("%d",&n);    for(int i = 0 ; i < n ; ++i)    {        scanf("%lf%lf%lf",&p[i].x,&p[i].y,&p[i].r);    }    for(int i = 0 ; i < n ; ++i)    {        for(int j = 0 ; j < n ; ++j)if(i!=j)        {            if(check(i,j))p[i].num++;        }    }//    for(int i  = 0 ; i < n ; ++i)cout << p[i].num << " ";//    puts("");    double sum = 0;    for(int i  = 0 ; i < n ; ++i)    {        if(!p[i].num || p[i].num == 1)sum += pi*p[i].r*p[i].r;        else if(p[i].num % 2)sum += pi*p[i].r*p[i].r;        else sum -= pi*p[i].r*p[i].r;    }    printf("%.8f\n",sum);    return 0;}








阅读全文
0 0
原创粉丝点击