题库练习 Delivery Club
← 上一题 下一题 →

A11174 | Delivery Club

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Petya and Vasya got employed as couriers. During the working day they are to deliver packages to $n$ different points on the line. According to the company's internal rules, the delivery of packages must be carried out strictly in a certain order. Initially, Petya is at the point with the coordinate $s_{1}$ , Vasya is at the point with the coordinate $s_{2}$ , and the clients are at the points $x_{1},x_{2},...,x_{n}$ in the order of the required visit.

The guys agree in advance who of them will deliver the package to which of the customers, and then they act as follows. When the package for the $i$ -th client is delivered, the one who delivers the package to the $(i+1)$ -st client is sent to the path (it can be the same person who went to the point $x_{i}$ , or the other). The friend who is not busy in delivering the current package, is standing still.

To communicate with each other, the guys have got walkie-talkies. The walkie-talkies work rather poorly at great distances, so Petya and Vasya want to distribute the orders so that the maximum distance between them during the day is as low as possible. Help Petya and Vasya to minimize the maximum distance between them, observing all delivery rules.

输入格式

The first line contains three integers $n$ , $s_{1}$ , $s_{2}$ ( $1<=n<=100000$ , $0<=s_{1},s_{2}<=10^{9}$ ) — number of points of delivery and starting positions of Petya and Vasya.

The second line contains $n$ integers $x_{1},x_{2},...,x_{n}$ — customers coordinates ( $0<=x_{i}<=10^{9}$ ), in the order to make a delivery.

It is guaranteed, that among the numbers $s_{1},s_{2},x_{1},...,x_{n}$ there are no two equal.

输出格式

Output the only integer, minimum possible maximal distance between couriers during delivery.

输入输出样例

输入 #1
2 0 10
5 6
输出 #1
10
输入 #2
3 2 1
3 4 5
输出 #2
1
输入 #3
1 4 5
2
输出 #3
2
C++ 编辑器
输入
输出