#P1661. Checkpoints
Checkpoints
Checkpoints
题面翻译
数轴上有 个点,分别编号为 。你初始位置在 ,要经过其中的 个点,求最小总行走距离。
输入格式
第一行两个正整数 和 。
第二行 个正整数 ,表示各个点的位置。
输出格式
一行,一个正整数,表示最小的总行走距离。
题目描述
Vasya takes part in the orienteering competition. There are checkpoints located along the line at coordinates . Vasya starts at the point with coordinate . His goal is to visit at least checkpoint in order to finish the competition. Participant are allowed to visit checkpoints in arbitrary order.
Vasya wants to pick such checkpoints and the order of visiting them that the total distance travelled is minimized. He asks you to calculate this minimum possible value.
输入格式
The first line of the input contains two integers and ( , ) — the number of checkpoints and Vasya's starting position respectively.
The second line contains integers ( ) — coordinates of the checkpoints.
输出格式
Print one integer — the minimum distance Vasya has to travel in order to visit at least checkpoint.
样例 #1
样例输入 #1
3 10
1 7 12
样例输出 #1
7
样例 #2
样例输入 #2
2 0
11 -10
样例输出 #2
10
样例 #3
样例输入 #3
5 0
0 0 1000 0 0
样例输出 #3
0
提示
In the first sample Vasya has to visit at least two checkpoints. The optimal way to achieve this is the walk to the third checkpoints (distance is ) and then proceed to the second one (distance is ). The total distance is equal to .
In the second sample it's enough to visit only one checkpoint so Vasya should just walk to the point .