CF223D.Spider
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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:
- Transfer. The spider moves from the point p1 with coordinates (x1,y1) , lying on the polygon border, to the point p2 with coordinates (x2,y2) , 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 p1 to point p2 goes along the polygon border. It's up to the spider to choose the direction of walking round the polygon border (clockwise or counterclockwise).
- Descend. The spider moves from point p1 with coordinates (x1,y1) to point p2 with coordinates (x2,y2) , at that points p1 and p2 must lie on one vertical straight line ( x1=x2 ), point p1 must be not lower than point p2 ( y1>=y2 ) and segment p1p2 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 .
输入格式
The first line contains integer n ( 3<=n<=105 ) — 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 104 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
说明/提示
In the first sample the spider transfers along the side that connects vertexes 1 and 4.
In the second sample the spider doesn't have to transfer anywhere, so the distance equals zero.
In the third sample the best strategy for the spider is to transfer from vertex 3 to point (2,3), descend to point (2,1), and then transfer to vertex 1.