Description

JYY has placed N bombs on the plane. We assume that the firepower area of each bomb is circle whose radius is one unit. Can you tell JYY the total firepower overlay area, just have a try ^_^

Input

Standard input will contain multiple test cases. For each test case, the first line is an integer N(N <= 100), which is the total number of the bombs. Then N lines followed and each line contains two integers X and Y, which means the 2-D coordinate of each bomb.

Output

For each test cases, output the  total firepower overlay area(accurate to two fractional digits) in one line.

Sample Input

31 11 22 2

Sample Output

6.84

​解题思路:1.首先想直接将N个圆的面积N*π,再减去相交的部分,由于A∪B∪C=A+B+C-A∩B-A∩C-B∩C+A∩B∩C比较麻烦。要记住所有相交的位置,所以本题采用相加的策略。

2.相加:分析每个圆会占据4个正方形的位置,则记录四个正方形的形状,共九种状态:如下依次为123456789:

​​然后1/2/3/4对应的面积为π/4,

5/6/7/8对应的面积为π/6+sin(π/3)/2

9的面积为1

则粘贴代码如下:

#include

#include

#include

#define Pi 3.1415926

typedef struct square{

int x;

int y;

int t;

struct square * next;

}square;

square * search(int x, int y, square * head, int type){

square * cur = head;

int flag = 0;

while (cur->next != NULL){

cur = cur->next;

if ((x == cur->x) && (y == cur->y)){

flag = 1;

if (type == 1){

if (cur->t == 1) cur->t = 1;

else if (cur->t == 2 || cur->t == 5) cur->t = 5;

else if (cur->t == 3 || cur->t == 6) cur->t = 6;

else if (cur->t == 4 || cur->t == 7 || cur->t == 8 || cur->t == 9) cur->t = 9;

break;

}

else if (type == 2){

if (cur->t == 1 || cur->t == 5) cur->t = 5;

else if (cur->t == 2) cur->t = 2;

else if (cur->t == 3 || cur->t == 6 || cur->t == 8 || cur->t == 9) cur->t = 9;

else if (cur->t == 4 || cur->t == 7)cur->t = 7;

break;

}

else if (type == 3){

if (cur->t == 1 || cur->t == 6) cur->t = 6;

else if (cur->t == 2 || cur->t == 7 || cur->t == 5 || cur->t == 9) cur->t = 9;

else if (cur->t == 3) cur->t = 3;

else if (cur->t == 4 || cur->t == 8) cur->t = 8;

break;

}

else if (type == 4){

if (cur->t == 1 || cur->t == 5 || cur->t == 6 || cur->t == 9) cur->t = 9;

else if (cur->t == 2 || cur->t == 7) cur->t = 7;

else if (cur->t == 3 || cur->t == 8) cur->t = 8;

else if (cur->t == 4) cur->t = 4;

break;

}

}

}

if ((cur->next == NULL) && (flag == 0)){

square * temp = malloc(sizeof(square));

temp->next = NULL;

temp->x = x;

temp->y = y;

temp->t = type;

cur->next = temp;

}

return head;

}

double cal(square * head){

double ans = 0;

square * pres = head;

while (pres->next != NULL){

pres = pres->next;

if ((pres->t >= 1) && (pres->t <= 4)){

ans += Pi / 4.0;

}

else if ((pres->t >= 5) && (pres->t <= 8)){

ans += Pi / 6.0 + ((double)sin(Pi / 3.0)) / 2.0;

}

else if (pres->t == 9){

ans += 1;

}

}

return ans;

}

int main(){

int N;

int i;

int x, y;

square * head = malloc(sizeof(square));

//printf("%lf", ((double)sin(Pi / 3.0)) / 2.0);

head->next = NULL;

while (scanf_s("%d", &N) != EOF){

double res = 0;

for (i = 0; i < N; i++){

scanf_s("%d %d", &x, &y);

res = cal(head);

search(x - 1, y - 1, head, 1);

search(x, y - 1, head, 2);

search(x - 1, y, head, 3);

search(x, y, head, 4);

square * temp = head;

square * cut = temp;

while (temp->next != NULL){

printf("x=%d,y=%d,type=%d\n", temp->next->x, temp->next->y, temp->next->t);

temp = temp->next;

}

}

res = cal(head);

printf("res=%.2f", res);

square * temp = head;

square * cut = temp;

while (temp->next != NULL){

cut = temp->next;

free(temp);

temp = cut;

}

}

system("pause");

}

WOJ-1097的更多相关文章

  1. WOJ -1204

    WOJ -1204 1 出现次数大于一半 那么就利用普通的堆栈的思想,如果删除两个不同的元素,原来的多数元素还是多数元素,所以采取按条件入栈的方法,如果和top元素相同则入栈,否则top--,此元素也 ...

  2. zoj 1097 普吕弗序列

    题目大意:输入一颗无根树的括号序列,求这棵树的普吕弗序列. 分析思路: 1)普吕弗序列,可以参考维基百科,其做法是找出树中编号最小的叶子节点,并将此叶子节点及边删除,并输出其邻接的节点标号: 2)递归 ...

  3. 【BZOJ】1097: [POI2007]旅游景点atr(spfa+状压dp)

    http://www.lydsy.com/JudgeOnline/problem.php?id=1097 首先还是我很sb....想到了分层图想不到怎么串起来,,,以为用拓扑序搞转移,,后来感到不行. ...

  4. [swustoj 1097] 2014

    2014(1097) 问题描述 今年是2014年,所以小明喜欢2014的每一位数字(即:2,0,1,4),小明想知道在区间[l,r](包括l和r)中有多少个数中含有这4个数字(数字无前缀零). 输入 ...

  5. BZOJ 1097: [POI2007]旅游景点atr( 最短路 + 状压dp )

    先最短路预处理, 然后状压就行了 -------------------------------------------------------------------------- #include ...

  6. [Swust OJ 1097]--2014(数位dp)

    题目链接:http://acm.swust.edu.cn/problem/1097/ Time limit(ms): 1000 Memory limit(kb): 32768   今年是2014年,所 ...

  7. hdu 1097 A hard puzzle 快速幂取模

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1097 分析:简单题,快速幂取模, 由于只要求输出最后一位,所以开始就可以直接mod10. /*A ha ...

  8. PAT 1097 Deduplication on a Linked List[比较]

    1097 Deduplication on a Linked List(25 分) Given a singly linked list L with integer keys, you are su ...

  9. LightOJ 1097 - Lucky Number 线段树

    http://www.lightoj.com/volume_showproblem.php?problem=1097 题意:一个自然数序列,先去掉所有偶数项,在此基础上的序列的第二项为3,则删去所有3 ...

  10. HihoCoder 1097 Prim算法

    1097 : 最小生成树一·Prim算法 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 最近,小Hi很喜欢玩的一款游戏模拟城市开放出了新Mod,在这个Mod中,玩家可以 ...

随机推荐

  1. ubuntu16.04安装metasploit+postgresql

    进入到程序想要安装的位置 cd /opt 然后下载安装脚本 curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/maste ...

  2. Beaglebone Black – 连接 GY-91 MPU9250+BMP280 九轴传感器(2)

    这次用 SPI.BBB 有两套 SPI 接口可用,两套都是默认 disable,需要用 overlay 方式启用,即: echo BB-SPIDEV0 > /sys/devices/bone_c ...

  3. 使用jquery中height()方法获取各种高度大全

    alert($(window).height()); //浏览器当前窗口可视区域高度 alert($(document).height()); //浏览器当前窗口文档的高度 alert($(docum ...

  4. JavaScript严格模式详解

    转载自阮一峰的博客 Javascript 严格模式详解   作者: 阮一峰 一.概述 除了正常运行模式,ECMAscript 5添加了第二种运行模式:"严格模式"(strict m ...

  5. UiAutomator环境搭建及详细操作

    一.环境搭建 1.1 必备条件 JDK SDK(API高于15) Eclipse(安装ADT插件) ANT(用于编译生成的jar) 安装JDK并添加环境变量 1.2 详细步骤 1.安装JDK并添加环境 ...

  6. hibernate hibernate.cfg.xml component 组件

    1.为什么使用component组件? 当一个表的列数目比较多时,可以根据属性分类,将一个java对象拆分为几个对象. 数据库还是一张表,不过有多个对象与之对应. 2.实例 2.1 Java 对象: ...

  7. Java后台传前台json数组

    function checkStore(){ var flag=1; $.ajax({ url:"widget?type=shop_cart&ajax=yes&action= ...

  8. CSS 3 阴影,倒影,渐变

    盒子阴影 box-shadow:盒子的阴影 第一个参数:设置的是阴影的水平偏移量 第二个参数:设置的是阴影的垂直偏移量 第三个参数:设置阴影的模糊程度 第四个参数:设置阴影外延值 第五个参数:阴影的颜 ...

  9. Django1.9开发博客(14)- 集成Xadmin

    xadmin是一个django的管理后台实现,使用了更加灵活的架构设计及Bootstrap UI框架, 目的是替换现有的admin,国人开发,有许多新的特性: 兼容 Django Admin 使用 B ...

  10. point\polyline\polygon的转化(转)

    首先你要明白Polyline是由path对象构成,Polygon是由ring对象构成,因此实现polyline向polygon的转换,思路如下:1.提取polyline中的所有path对象2.将pat ...