CF223D.Spider

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A plane contains a not necessarily convex polygon without self-intersections, consisting of nn vertexes, numbered from 1 to nn . 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 p1p_{1} with coordinates (x1,y1)(x_{1},y_{1}) , lying on the polygon border, to the point p2p_{2} with coordinates (x2,y2)(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 p1p_{1} to point p2p_{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 p1p_{1} with coordinates (x1,y1)(x_{1},y_{1}) to point p2p_{2} with coordinates (x2,y2)(x_{2},y_{2}) , at that points p1p_{1} and p2p_{2} must lie on one vertical straight line ( x1=x2x_{1}=x_{2} ), point p1p_{1} must be not lower than point p2p_{2} ( y1>=y2y_{1}>=y_{2} ) and segment p1p2p_{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 ss . Find the length of the shortest path to the vertex number tt , consisting of transfers and descends. The distance is determined by the usual Euclidean metric .

输入格式

The first line contains integer nn ( 3<=n<=1053<=n<=10^{5} ) — the number of vertexes of the given polygon. Next nn 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 10410^{4} in their absolute value.

The last line contains two space-separated integers ss and tt ( 1<=s,t<=n1<=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 nn -th vertex are on the (n+1)(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 ss to vertex tt . The answer is considered correct, if its absolute or relative error does not exceed 10610^{-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.

首页