3481.Difference Row

Time Limit: 1s Memory Limit: 256MB

You want to arrange n integers a1,a2,...,an in some order in a row. Let's define the value of an arrangement as the sum of differences between all pairs of adjacent integers.

More formally, let's denote some arrangement as a sequence of integers x1,x2,...,xn, where sequence x is a permutation of sequence a. The value of such an arrangement is (x1-x2)+(x2-x3)+...+(xn-1-xn).

Find the largest possible value of an arrangement. Then, output the lexicographically smallest sequence x that corresponds to an arrangement of the largest possible value.

Input Format(From the terminal/stdin)

The first line of the input contains integer n (2 \le n \le 100). The second line contains n space-separated integers a1, a2, ..., an (|ai| \le 1000).

Output Format(To the terminal/stdout)

Print the required sequence x1,x2,...,xn. Sequence x should be the lexicographically smallest permutation of a that corresponds to an arrangement of the largest possible value.

Sample Input

Copy
5
100 -100 50 0 -50
 \n
   ·    ·  · ·   \n

Sample Output

Copy
100 -50 0 50 -100 
   ·   · ·  ·    \n

Hints

In the sample test case, the value of the output arrangement is (100-(-50))+((-50)-0)+(0-50)+(50-(-100))=200. No other arrangement has a larger value, and among all arrangements with the value of 200, the output arrangement is the lexicographically smallest one.

Sequence x1,x2,... ,xp is lexicographically smaller than sequence y1,y2,... ,yp if there exists an integer r (0 \le r \lt p) such that x1=y1,x2=y2,... ,xr=yr and xr+1 \lt yr+1.

Submit

请先 登录

© 2025 FAQs