CF567A.Lineland Mail
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
All cities of Lineland are located on the Ox coordinate axis. Thus, each city is associated with its position xi — a coordinate on the Ox axis. No two cities are located at a single point.
Lineland residents love to send letters to each other. A person may send a letter only if the recipient lives in another city (because if they live in the same city, then it is easier to drop in).
Strange but true, the cost of sending the letter is exactly equal to the distance between the sender's city and the recipient's city.
For each city calculate two values mini and maxi , where mini is the minimum cost of sending a letter from the i -th city to some other city, and maxi is the the maximum cost of sending a letter from the i -th city to some other city
输入格式
The first line of the input contains integer n ( 2<=n<=105 ) — the number of cities in Lineland. The second line contains the sequence of n distinct integers x1,x2,...,xn ( −109<=xi<=109 ), where xi is the x -coordinate of the i -th city. All the xi 's are distinct and follow in ascending order.
输出格式
Print n lines, the i -th line must contain two integers mini,maxi , separated by a space, where mini is the minimum cost of sending a letter from the i -th city, and maxi is the maximum cost of sending a letter from the i -th city.
输入输出样例
输入#1
4 -5 -2 2 7
输出#1
3 12 3 9 4 7 5 12
输入#2
2 -1 1
输出#2
2 2 2 2