博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
An overnight dance in discotheque
阅读量:6853 次
发布时间:2019-06-26

本文共 4312 字,大约阅读时间需要 14 分钟。

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 ≤ 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 .

Examples
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.

题解:

因为圆与圆之间只有两种关系,即相离和相包含,所以就可以根据是否相包含建立一棵树。

因为只有奇数部分才算宽敞度,所以自然就可以想到用0和1来表示在奇数层和偶数层。

又因为要将圆分成两个部分,综上所述,状态即为f[x][0/1][0/1]表示以x为根节点的树,x放在左边奇数层或偶数层和x放在右边奇数层或偶数层的最大值。

由于父子节点的层数相差一,所以从下到上动归的时候需要做一个异或运算。

代码如下:

 

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define pai (3.14159265358979323846)//像我这种辣鸡只会手打二十位的πusing namespace std;int n,m;int x[1005],y[1005],r[1005];int father[1005];long long f[1005][2][2];struct node{ int next,to;}edge[200001];int head[1005],size=1;void putin(int from,int to){ size++; edge[size].to=to; edge[size].next=head[from]; head[from]=size;}bool judge(int a,int b){ if((long long)(x[a]-x[b])*(x[a]-x[b])+(long long)(y[a]-y[b])*(y[a]-y[b])<=(long long)(r[a]-r[b])*(r[a]-r[b]))return 1; else return 0;}void dfs(int x,int fa){ int i,j,k; long long g[2][2]={ 0}; for(i=head[x];i!=-1;i=edge[i].next) { int y=edge[i].to; if(y!=fa) { dfs(y,x); for(j=0;j<=1;j++) { for(k=0;k<=1;k++) { g[j][k]+=f[y][j][k]; } } } } for(i=0;i<=1;i++) { for(j=0;j<=1;j++) { f[x][i][j]=max(g[i^1][j]+(long long)r[x]*r[x]*(i==0?(1):(-1)),g[i][j^1]+(long long)r[x]*r[x]*(j==0?(1):(-1))); } }}int main(){ int i,j; scanf("%d",&n); memset(head,-1,sizeof(head)); for(i=1;i<=n;i++) { scanf("%d%d%d",&x[i],&y[i],&r[i]); } memset(father,-1,sizeof(father)); for(i=1;i<=n;i++) { for(j=1;j<=n;j++) { if(i!=j&&r[i]<=r[j]&&judge(i,j)) { if(father[i]==-1||r[father[i]]>r[j])father[i]=j; } } putin(father[i],i); } long long ans=0; for(i=1;i<=n;i++) { if(father[i]==-1) { dfs(i,-1); ans+=f[i][0][0]; } } printf("%.8lf",ans*pai); return 0;}

 

 

 

 

转载于:https://www.cnblogs.com/huangdalaofighting/p/6971828.html

你可能感兴趣的文章
hadoop之 HDFS fs 命令总结
查看>>
快速实现DEDECMS织梦系统伪标题采集
查看>>
去除Html标签
查看>>
目的节点序列距离矢量(DSDV)协议
查看>>
iOS之核心动画
查看>>
Linux问题集
查看>>
parent
查看>>
JNI Hello World
查看>>
LindDotNetCore~Ocelot实现微服务网关
查看>>
数据结构之队列——回文字判断
查看>>
消息队列
查看>>
链表的遍历
查看>>
微信小程序中的图形验证码
查看>>
数字转罗马数字
查看>>
CNN网络架构演进
查看>>
windows上安装Ipython notebook
查看>>
选择屏幕加功能码
查看>>
UIImagePickerController 视频录制操作,视频大小,时间长度
查看>>
Python Tuples
查看>>
Entity Framework 4 in Action读书笔记——第一章:数据访问重载:Entity Framework(3)...
查看>>