Preparando MOJI

King's Problem?

3000ms 262144K

Description:

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 n cities in the kingdom at points with coordinates (x1, 0), (x2, 0), ..., (xn, 0), and there is one city at point (xn + 1, yn + 1).

King starts his journey in the city number k. 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.

Input:

The first line contains two integers n and k (1 ≤ n ≤ 105, 1 ≤ k ≤ n + 1) — amount of cities and index of the starting city. The second line contains n + 1 numbers xi. The third line contains yn + 1. All coordinates are integers and do not exceed 106 by absolute value. No two cities coincide.

Output:

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

Sample Input:

3 1
0 1 2 1
1

Sample Output:

3.41421356237309490000

Sample Input:

3 1
1 0 2 1
1

Sample Output:

3.82842712474619030000

Sample Input:

4 5
0 5 -1 -5 2
3

Sample Output:

14.24264068711928400000

Informação

Codeforces

Provedor Codeforces

Código CF30D

Tags

geometrygreedy

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:27:37

Relacionados

Nada ainda