当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

2933:Fairies' Defence

题目描述
There are n fairies living happily in the Fairyland. One day, when the fairies are playing games, they are suddenly stuck in the sky and cannot move anymore! "Your moving abilities are sealed by my magic. Be ready to defense my attack!" a terrible voice came out, "I'll appear in the cube (0, 0, 0)-(a, b, c), rush to the nearest fairy and then, make my assault with all my power!"
Since all the fairies cannot move any more, the only chance is to redistribute their defense powers according to their dangerousness. Formally, the defense power one fairy gains should be proportional to its probability to be attacked by the unknown fierce creature.
Write a program to compute the probability to be attacked, for every fairy. You may assume that the probability density of the attacker's initial position is the same everywhere in the cube; if there are at least two fairies closest (having the minimal Euclidean distance) to the initial position, any one may be attacked.
输入解释
The input consists of several test cases. The first line of each case contains four integers, n, a, b, c (2 ≤ n ≤ 20, 1 ≤ a, b, c ≤ 1000). This is followed by n lines, each containing three integers x, y, z (0 ≤ x ≤ a, 0 ≤ y ≤ b, 0 ≤ z ≤ c), the coordinates of the fairies. No two fairies occupy the same position. The last test case is followed by a single zero, which should not be processed.
输出解释
For each test case, print the case number and the probabilities for every fairy, to three decimal places.
输入样例
2 3 3 3
1 1 1
2 2 2
2 7 2 10
1 1 6
3 1 6
0
输出样例
Case 1: 0.500 0.500
Case 2: 0.286 0.714
来自杭电HDUOJ的附加信息
Recommend lcy

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-2933

最后修改于 2020-10-25T22:58:22+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 32768/32768K(Java/Others)