CF30D.King's Problem?

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Every true king during his life must conquer the world, hold the Codeforces world finals, win pink panda in the shooting gallery and travel all over his kingdom.

King Copa has already done the first three things. Now he just needs to travel all over the kingdom. The kingdom is an infinite plane with Cartesian coordinate system on it. Every city is a point on this plane. There are nn cities in the kingdom at points with coordinates (x1,0),(x2,0),...,(xn,0)(x_{1},0),(x_{2},0),...,(x_{n},0) , and there is one city at point (xn+1,yn+1)(x_{n+1},y_{n+1}) .

King starts his journey in the city number kk . Your task is to find such route for the king, which visits all cities (in any order) and has minimum possible length. It is allowed to visit a city twice. The king can end his journey in any city. Between any pair of cities there is a direct road with length equal to the distance between the corresponding points. No two cities may be located at the same point.

输入格式

The first line contains two integers nn and kk ( 1<=n<=105,1<=k<=n+11<=n<=10^{5},1<=k<=n+1 ) — amount of cities and index of the starting city. The second line contains n+1n+1 numbers xix_{i} . The third line contains yn+1y_{n+1} . All coordinates are integers and do not exceed 10610^{6} by absolute value. No two cities coincide.

输出格式

Output the minimum possible length of the journey. Your answer must have relative or absolute error less than 10610^{-6} .

输入输出样例

  • 输入#1

    3 1
    0 1 2 1
    1
    

    输出#1

    3.41421356237309490000
  • 输入#2

    3 1
    1 0 2 1
    1
    

    输出#2

    3.82842712474619030000
  • 输入#3

    4 5
    0 5 -1 -5 2
    3
    

    输出#3

    14.24264068711928400000
首页