PivotOJ

Spaceship Exploration

시간 제한: 2000ms메모리 제한: 1024MB출처: ICPC Asia Jakarta Regional 2023BOJ 32079

문제

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 NN-sided convex polygon. Each corner is numbered from 11 to NN; corner ii is located at (Xi,Yi)(X_i , Y_i). At any moment, you should not be inside this polygon; however, it is safe to touch the side of the polygon.

There are QQ scenarios (numbered from 11 to QQ). In scenario jj, you want to go from a starting point at (Aj,Bj)(A_j , B_j ) to an ending point at (Cj,Dj)(C_j , D_j ). 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 NN (3 ≤ N ≤ 100\, 000).

Each of the next NN lines consists of two integers XiX_i YiY_i (-10^9 ≤ X_i , Y_i ≤ 10^9). The points form a convex polygon in counterclockwise order. There are no three points which are collinear.

The following line consists of an integer QQ (1 ≤ Q ≤ 100\, 000).

Each of the next QQ lines consists of four integers AjA_j BjB_j CjC_j DjD_j (-10^9 ≤ A_j , B_j , C_j , D_j ≤ 10^9). 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 10610^{-6}. Namely, if your answer is aa and the jury’s answer is bb, then your answer is accepted if \frac{|a−b|}{\max(1,|b|)} ≤ 10^{-6}.

예제

예제 1

입력
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

예제 2

입력
4
-10 -9
10 -9
10 9
-10 9
2
0 10 0 -10
-10 -10 -10 -10
출력
200.9975124224
0

예제 3

입력
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
코드를 제출하려면 로그인하세요.