#P15685. [ICPC 2023 Jakarta R] Spaceship Exploration
[ICPC 2023 Jakarta R] Spaceship Exploration
题目描述
In The ICPC Galaxy, there exists a zone filled with asteroids that is unsafe to enter. The map of the galaxy is represented in a 2D Cartesian coordinate system. The zone is in the shape of an -sided convex polygon. Each corner is numbered from to ; corner is located at . At any moment, you should not be inside this polygon; however, it is safe to touch the side of the polygon.
There are scenarios (numbered from to ). In scenario , you want to go from a starting point at to an ending point at . You will be riding on a special spaceship that can only travel in a straight line. First, you set the direction of the spaceship, then the spaceship will start traveling in that direction. During the travel, you are only allowed to change direction at most once. Changing direction means you stop the spaceship, set a new direction, and then start traveling again in the new direction.
For each scenario, determine the minimum distance required to travel without being inside of the zone at any moment, or report if it is impossible to reach the ending point.
输入格式
The first line consists of an integer ( ).
Each of the next lines consists of two integers ( ). The points form a convex polygon in counterclockwise order. There are no three points which are collinear.
The following line consists of an integer ( ).
Each of the next lines consists of four integers ( ). There are no starting points and ending points inside the zone. However, it is possible for the starting point and the ending point to be at the side of the zone.
All the coordinates in the input are integers.
输出格式
For each scenario, output the answer in a single line.
If it is possible to reach the ending point without being inside the zone at any moment, then output the minimum distance required to travel. Otherwise, output -1.
Your answer is considered correct if its absolute error or relative error does not exceed . Namely, if your answer is and the jury's answer is , then your answer is accepted if .
5
0 2
2 0
4 0
4 4
2 4
5
6 1 6 3
2 5 0 0
3 5 3 -1
1 4 5 4
3 4 3 0
2
5.6055512755
8.48528137422
4
-1
4
-10 -9
10 -9
10 9
-10 9
2
0 10 0 -10
-10 -10 -10 -10
200.9975124224
0
8
-20 -10
10 -20
25 -15
35 -5
30 10
15 20
-25 15
-30 5
6
-15 -15 -15 20
-30 -5 30 15
25 20 -5 -20
-5 25 20 -20
-30 10 30 -10
-30 -50 50 0
59.0857761929
103.2455532034
94.7213595500
101.5640991922
164.8528137424
94.3398113206
提示
Explanation for the sample input/output #1
This sample is depicted in the following illustration.
:::align{center}
:::
During scenario and , you can directly go to the ending point without changing the direction.
During scenario , you can go to , then change direction to the ending point.
During scenario , you can go to , then change direction to the ending point.
During scenario , it can be shown that it is impossible to reach the ending point.