codeforces 814D(25/600)

来源:互联网 发布:java商城分销系统源码 编辑:程序博客网 时间:2024/05/20 11:50

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 ri. No 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 xi, yi and ri ( - 106 ≤ xi, yi ≤ 106, 1 ≤ 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 .

Example
Input
5
2 1 6
0 4 1
2 -1 3
1 -2 1
4 -1 1
Output
138.23007676
Input
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
Output
289.02652413
Note
The first sample corresponds to the illustrations in the legend.

英语题
看懂题干很水

然后就读了一万年的题….

药丸药丸

#include<algorithm>#include<iostream>#include<cstring>#include<cstdio>#include<queue>#include<vector>using namespace std;struct p{    long long x, y, r;    bool operator < (const p&a)const    {        return r > a.r;    }};p dian[1001];vector<long long>tu[1001];long long bj[1001],dn=0;void dfs(long long gen, long long shendu){    bj[gen] = 1;    long long dx = 0;    if (shendu == 1 || shendu % 2 == 0)dn += dian[gen].r*dian[gen].r;    else dn -= dian[gen].r*dian[gen].r;    for (long long a = 0; a < tu[gen].size(); a++)dfs(tu[gen][a], shendu + 1);}long long jiejue(long long gen){    dn = 0;    dfs(gen,1);    return dn;}int main(){    long long n;    cin >> n;    for (long long a = 1; a <= n; a++)scanf("%lld%lld%lld", &dian[a].x, &dian[a].y, &dian[a].r);    sort(dian + 1, dian + n + 1);    for (long long a = 1; a <= n; a++)    {        for (long long b = a - 1; b >= 1; b--)        {            if (dian[b].r*dian[b].r <= (dian[a].x - dian[b].x)*(dian[a].x - dian[b].x) +(dian[a].y - dian[b].y)*(dian[a].y - dian[b].y))continue;            tu[b].push_back(a);            break;        }    }    double jg = 0;    for (long long a = 1; a <= n; a++)    {        if (bj[a])continue;        jg += jiejue(a);    }    printf("%.10f", jg*3.1415926535898);}
原创粉丝点击