- 1、本文档共10页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
算法设计与分析盒子里的气球程序
盒子里的气球 算法
盒子里的气球 枚举法 刘汝佳 算法艺术与信息学竞赛Problem Description
You must write a program that simulates placing spherical balloons into a rectangular box.
The simulation scenario is as follows. Imagine that you are given a rectangular box and a set of points inside the box. Each point represents a position where you might place a balloon. To place a balloon at a point, center it at the point and inflate the balloon until it touches a side of the box or a previously placed balloon. You may use the points in any order you like, and need not use every point. Your objective is to place balloons in the box in an order that maximizes the total volume occupied by the balloons.
You are required to calculate the volume within the box that is not enclosed by the balloons.
All integer will be in [-1000, 1000].
Input
The input consists of several test cases. The first line of each test case contains a single integer n that indicates the number of points in the set (n ≤ 6). The second line contains three integers that represent the (x, y, z) integer coordinates of a corner of the box, and the third line contains the (x, y, z) integer coordinates of the opposite corner of the box. The next n lines of the test case contain three integers each, representing the (x, y, z) coordinates of the points in the set. The box has non-zero length in each dimension and its sides are parallel to the coordinate axes.
Output
For each test case print one line which indicates the volume of the box not occupied by balloons. Round the volume to the nearest integer.
Sample Input
2
0 0 0
10 10 10
3 3 3
7 7 7
?
Sample Output
774
#includestdio.h #includestdlib.h
#includemath.h #includestring.h
int n; double v,sv;
struct po {
????int x, y, z; ????double r;
}p[10],b[2]; ??
bool vis[10]; ??
const double pi =3.141592653 const double inf=10000000000.0;
?? double min(double a,double b)
{ ???????if(ab)
???????return a; ???????else?
???????return b; }
?? double
您可能关注的文档
- 空冷器翅片管腐蚀失效分析.doc
- 空心杯电机的pwm调制及pi控制方法.docx
- 控制的三相桥式pwm整流电路的设计与分析.doc
- 苦荞麦黄酮化合物对胃癌细胞sgc-7901作用的研究.doc
- 跨国公司知识管理的swot分析.doc
- 跨国企业在中国市场成功的关键性因素.doc
- 孔加工技术发展动向.doc
- 快速成形制造技术与国际发展潮流合拍.doc
- 溃疡性结肠炎内镜检查的研究进展.doc
- 快速水分测定法的验证.doc
- 第11课《山地回忆》课件统编版语文七年级下册.pptx
- (统编2024版)道德与法治七年级下册 9.1日益完善的法律体系 课件(新教材).pptx
- 10.1 认识民法典 2024-2025学年八年级道德与法治下册.pptx
- Unit+6+Section+A+3a~+3c课件++-+2024-2025学年人教版八年级英语下册.pptx
- 10.1认识民法典 2024-2025学年七年级道德与法治下册高效备课精品课件+教学设计(统编版).pptx
- 11.3 功 功率 课件 -2024-2025学年教科版2024物理八年级下册.pptx
- 5.2+基本政治制度 -2024-2025学年八年级道德与法治下册高效课堂【核心素养目标精品课件】(统编版).pptx
- 19.2正比例函数的图像性质(同步课件)-2024-2025学年八年级数学下册(人教版).pptx
- 5.3基本经济制度 -【探究课堂】2024-2025学年八年级道德与法治下册高效备课精品课件+教学设计(统编版).pptx
- 9.2法律保障生活 2024-2025学年八年级道德与法治下册.pptx
文档评论(0)