CF75E.Ship's Shortest Path

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You have got a new job, and it's very interesting, you are a ship captain. Your first task is to move your ship from one point to another point, and for sure you want to move it at the minimum cost.

And it's well known that the shortest distance between any 2 points is the length of the line segment between these 2 points. But unfortunately there is an island in the sea, so sometimes you won't be able to move your ship in the line segment between the 2 points.

You can only move to safe points. A point is called safe if it's on the line segment between the start and end points, or if it's on the island's edge.

But you are too lucky, you have got some clever and strong workers and they can help you in your trip, they can help you move the ship in the sea and they will take 1 Egyptian pound for each moving unit in the sea, and they can carry the ship (yes, they are very strong) and walk on the island and they will take 2 Egyptian pounds for each moving unit in the island. The money which you will give to them will be divided between all workers, so the number of workers does not matter here.

You can move your ship on the island edge, and it will be considered moving in the sea.

Now you have a sea map, and you have to decide what is the minimum cost for your trip.

Your starting point is ( xStartxStart , yStartyStart ), and the end point is ( xEndxEnd , yEndyEnd ), both points will be different.

The island will be a convex polygon and there will be no more than 2 polygon points on the same line, also the starting and the end points won't be inside or on the boundary of the island. The points for the polygon will be given in the anti-clockwise order.

输入格式

The first line contains 4 integers, xStartxStart , yStartyStart , xEndxEnd and yEndyEnd ( 100<=xStart,yStart,xEnd,yEnd<=100-100<=xStart,yStart,xEnd,yEnd<=100 ). The second line contains an integer nn , which is the number of points in the polygon ( 3<=n<=303<=n<=30 ), followed by a line containing nn pairs of integers xx and yy , which are the coordinates of the points ( 100<=x,y<=100-100<=x,y<=100 ), the polygon points will be distinct.

输出格式

Print one line which contains the minimum possible cost. The absolute or relative error in the answer should not exceed 10610^{-6} .

输入输出样例

  • 输入#1

    1 7 6 7
    4
    4 2 4 12 3 12 3 2
    

    输出#1

    6.000000000
    
  • 输入#2

    -1 0 2 0
    4
    0 0 1 0 1 1 0 1
    

    输出#2

    3.000000000
    
首页