1518:Problem Bee

题目描述
Imagine a perfectly formed honeycomb, spanning the infinite Cartesian plane. It is an interlocking grid composed of congruent equilateral hexagons. One hexagon is located so that its center is at the origin and has two corners on the X-axis. A bee must be very careful about how it travels in order not to get lost in the infinite plane. To get from an arbitrary point A to another arbitrary point B, it will first head from A to the exact center of the hexagon in which A is located. Then, it will travel in a straight line to the exact center of an adjacent hexagon. It will move from center to adjacent center until it has reached the hexagon containing point B. At the destination hexagon, it will move from the center to point B. In all cases the bee will take a path of minimal distance that obeys the rules. The figure below demonstrates one possible minimal path from point A to point B.
输入解释
Input will be in the form of 5 floating point numbers per line. The first number will be the length, in centimeters, of the sides of the hexagons. The next two numbers will be the x and y coordinates of point A, followed by the x and y coordinates for point B. The input will be terminated by a line containing five zeroes. Neither point A nor point B will ever be exactly on a border between hexagons.
输出解释
For each line of the input, output the minimum length of a path from point A to point B, in centimeters, to the nearest .001 centimeters.
输入样例
1.0 -3.2 2.2 3.3 0
9 1 4 5 1
0.1 .09 0 .21 0
0 0 0 0 0
输出样例
7.737
5.000
0.526

该题目是Virtual Judge题目,来自 北京大学POJ

题目来源 Greater New York 2000

源链接: POJ-1518

最后修改于 2020-10-29 06:06:12 UTC 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
1000 10000

·

·

·

·

登陆或注册以提交代码