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

建议使用的浏览器:

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

3521:Geometric Map

题目描述

Your task in this problem is to create a program that finds the shortest path between two given locations on a given street map, which is represented as a collection of line segments on a plane.


Figure 4: An example map

Figure 4 is an example of a street map, where some line segments represent streets and the others are signs indicating the directions in which cars cannot move. More concretely, AE, AM, MQ, EQ, CP and HJ represent the streets and the others are signs in this map. In general, an end point of a sign touches one and only one line segment representing a street and the other end point is open. Each end point of every street touches one or more streets, but no signs.

The sign BF, for instance, indicates that at B cars may move left to right but may not in the reverse direction. In general, cars may not move from the obtuse angle side to the acute angle side at a point where a sign touches a street (note that the angle CBF is obtuse and the angle ABF is acute). Cars may directly move neither from P to M nor from M to P since cars moving left to right may not go through N and those moving right to left may not go through O. In a special case where the angle between a sign and a street is rectangular, cars may not move in either directions at the point. For instance, cars may directly move neither from H to J nor from J to H.

You should write a program that finds the shortest path obeying these traffic rules. The length of a line segment between (x1, y1) and (x2, y2) is __poj_jax_start__\sqrt{(x_2-x_1)^2+(y_2-y_1)^2}__poj_jax_end__\sqrt{(x_2-x_1)^2+(y_2-y_1)^2}.

输入解释

The input consists of multiple datasets, each in the following format.

n
xs ys
xg yg
x11 y11 x21 y21

x1k y1k x2k y2k

x1n y1n x2n y2n

n, representing the number of line segments, is a positive integer less than or equal to 200.

(xs, ys) and (xg, yg) are the start and goal points, respectively. You can assume that (xs, ys) ≠ (xg, yg) and that each of them is located on an end point of some line segment representing a street. You can also assume that the shortest path from (xs, ys) to (xg, yg) is unique.

(x1k, y1k) and (x2k, y2k) are the two end points of the kth line segment. You can assume that (x1k, y1k) ≠ (x2k, y2k) Two line segments never cross nor overlap. That is, if they share a point, it is always one of their end points.

All the coordinates are non-negative integers less than or equal to 1000. The end of the input is indicated by a line containing a single zero.

输出解释

For each input dataset, print every street intersection point on the shortest path from the start point to the goal point, one in an output line in this order, and a zero in a line following those points. Note that a street intersection point is a point where at least two line segments representing streets meet. An output line for a street intersection point should contain its x- and y-coordinates separated by a space.

Print −1 if there are no paths from the start point to the goal point.

输入样例
8
1 1
4 4
1 1 4 1
1 1 1 4
3 1 3 4
4 3 5 3
2 4 3 5
4 1 4 4
3 3 2 2
1 4 4 4
9
1 5
5 1
5 4 5 1
1 5 1 1
1 5 5 1
2 3 2 4
5 4 1 5
3 2 2 1
4 2 4 1
1 1 5 1
5 3 4 3
11
5 5
1 0
3 1 5 1
4 3 4 2
3 1 5 5
2 3 2 2
1 0 1 2
1 2 3 4
3 4 5 5
1 0 5 2
4 0 4 1
5 5 5 1
2 3 2 4
0
输出样例
1 1
3 1
3 4
4 4
0
-1
5 5
5 2
3 1
1 0
0

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

题目来源 Japan 2007

源链接: POJ-3521

最后修改于 2020-10-29T07:03:36+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
5000 65536