301195: CF223D. Spider
Memory Limit:256 MB
Time Limit:3 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Spider
题目描述
A plane contains a not necessarily convex polygon without self-intersections, consisting of $ n $ vertexes, numbered from 1 to $ n $ . There is a spider sitting on the border of the polygon, the spider can move like that: 1. Transfer. The spider moves from the point $ p_{1} $ with coordinates $ (x_{1},y_{1}) $ , lying on the polygon border, to the point $ p_{2} $ with coordinates $ (x_{2},y_{2}) $ , also lying on the border. The spider can't go beyond the polygon border as it transfers, that is, the spider's path from point $ p_{1} $ to point $ p_{2} $ goes along the polygon border. It's up to the spider to choose the direction of walking round the polygon border (clockwise or counterclockwise). 2. Descend. The spider moves from point $ p_{1} $ with coordinates $ (x_{1},y_{1}) $ to point $ p_{2} $ with coordinates $ (x_{2},y_{2}) $ , at that points $ p_{1} $ and $ p_{2} $ must lie on one vertical straight line ( $ x_{1}=x_{2} $ ), point $ p_{1} $ must be not lower than point $ p_{2} $ ( $ y_{1}>=y_{2} $ ) and segment $ p_{1}p_{2} $ mustn't have points, located strictly outside the polygon (specifically, the segment can have common points with the border). Initially the spider is located at the polygon vertex with number $ s $ . Find the length of the shortest path to the vertex number $ t $ , consisting of transfers and descends. The distance is determined by the usual Euclidean metric ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF223D/d3ce90fe413df39b4f0232d7dab269112efea291.png).输入输出格式
输入格式
The first line contains integer $ n $ ( $ 3<=n<=10^{5} $ ) — the number of vertexes of the given polygon. Next $ n $ lines contain two space-separated integers each — the coordinates of the polygon vertexes. The vertexes are listed in the counter-clockwise order. The coordinates of the polygon vertexes do not exceed $ 10^{4} $ in their absolute value. The last line contains two space-separated integers $ s $ and $ t $ ( $ 1<=s,t<=n $ ) — the start and the end vertexes of the sought shortest way. Consider the polygon vertexes numbered in the order they are given in the input, that is, the coordinates of the first vertex are located on the second line of the input and the coordinates of the $ n $ -th vertex are on the $ (n+1) $ -th line. It is guaranteed that the given polygon is simple, that is, it contains no self-intersections or self-tangencies.
输出格式
In the output print a single real number — the length of the shortest way from vertex $ s $ to vertex $ t $ . The answer is considered correct, if its absolute or relative error does not exceed $ 10^{-6} $ .
输入输出样例
输入样例 #1
4
0 0
1 0
1 1
0 1
1 4
输出样例 #1
1.000000000000000000e+000
输入样例 #2
4
0 0
1 1
0 2
-1 1
3 3
输出样例 #2
0.000000000000000000e+000
输入样例 #3
5
0 0
5 0
1 4
0 2
2 1
3 1
输出样例 #3
5.650281539872884700e+000