PivotOJ

Hot Springs

시간 제한: 1000ms메모리 제한: 1024MB출처: NWERC 2020BOJ 21344

문제

Iceland is famous for its geothermal activity, which supplies the country with much of its electricity and heating. It is also a source of pleasure, in the form of hot springs.

Kalle is visiting one of Iceland's famous hot springs. It contains nn pools of water, where the iith one has temperature tit_i. Although staying in one of the warmer pools for a long time sure is relaxing, Kalle is on a very tight schedule and just wants a quick dip in each of the pools. As you may know, the nicest thing about hot baths is the contrast between hot and cold. Therefore, to get the most out of his stay, Kalle wants to find an ordering of the pools so that the difference in temperature between subsequent pools is increasing.

Given a sequence of pool temperatures t1,t2,,tnt_1, t_2, \dots, t_n, rearrange them into a new sequence t1,t2,,tnt'_1, t'_2, \dots, t'_n such that for all 2in12 \leq i \leq n-1 it holds that \[ |t'_{i-1} - t'_i| \leq |t'_i - t'_{i+1}|. \]

입력

The input consists of:

  • One line with an integer nn (2n1052 \le n \leq 10^5), the number of pools.
  • One line with nn integers t1,,tnt_1, \ldots, t_n (105ti105-10^5 \leq t_i \leq 10^5 for each ii), the temperatures in each of the nn pools.

출력

Output a rearrangement of the sequence satisfying the given requirement. If no solution exists, output "impossible". If there are multiple valid solutions, you may output any one of them.

예제

예제 1

입력
3
1 3 4
출력
4 3 1

예제 2

입력
6
0 0 1 -1 -6 3
출력
0 1 3 -1 -6 0
이 문제는 채점 준비 중입니다. 테스트 데이터가 확보되면 제출이 가능합니다.