1659. The Doors

单点时限: 2.0 sec

内存限制: 256 MB

You are to find the length of the shortest path through a chamber containing obstructing walls. The chamber will always have sides at x=0, x=10, y=0, and y=10. The initial and final points of the path are always (0,5) and (10,5). There will also be from 0 to 18 vertical walls inside the chamber, each with two doorways. The figure below illustrates such a chamber and also shows the path of minimal length.

输入格式

The input data for the illustrated chamber would appear as follows.

2

4 2 7 8 9

7 3 4.5 6 7

The first line contains the number of interior walls. Then there is a line for each such wall, containing five real numbers. The first number is the x coordinate of the wall (0<x<10), and the remaining four are the y coordinates of the ends of the doorways in that wall. The x coordinates of the walls are in increasing order, and within each line the y coordinates are in increasing order. The input file will contain at least one such set of data. The end of the data comes when the number of walls is -1.

输出格式

The output file should contain one line of output for each chamber. The line should contain the minimal path length rounded to two decimal places past the decimal point, and always showing the two decimal places past the decimal point. The line should contain no blanks.

样例

Input
1
5 4 6 7 8
2
4 2 7 8 9
7 3 4.5 6 7
-1
Output
10.00
10.06

7 人解决,13 人已尝试。

9 份提交通过,共有 23 份提交。

7.0 EMB 奖励。

创建: 16 年,7 月前.

修改: 6 年,8 月前.

最后提交: 4 年,1 月前.

来源: UVa

题目标签