CF1131C.Birthday
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Cowboy Vlad has a birthday today! There are n children who came to the celebration. In order to greet Vlad, the children decided to form a circle around him. Among the children who came, there are both tall and low, so if they stand in a circle arbitrarily, it may turn out, that there is a tall and low child standing next to each other, and it will be difficult for them to hold hands. Therefore, children want to stand in a circle so that the maximum difference between the growth of two neighboring children would be minimal possible.
Formally, let's number children from 1 to n in a circle order, that is, for every i child with number i will stand next to the child with number i+1 , also the child with number 1 stands next to the child with number n . Then we will call the discomfort of the circle the maximum absolute difference of heights of the children, who stand next to each other.
Please help children to find out how they should reorder themselves, so that the resulting discomfort is smallest possible.
输入格式
The first line contains a single integer n ( 2≤n≤100 ) — the number of the children who came to the cowboy Vlad's birthday.
The second line contains integers a1,a2,…,an ( 1≤ai≤109 ) denoting heights of every child.
输出格式
Print exactly n integers — heights of the children in the order in which they should stand in a circle. You can start printing a circle with any child.
If there are multiple possible answers, print any of them.
输入输出样例
输入#1
5 2 1 1 3 2
输出#1
1 2 3 2 1
输入#2
3 30 10 20
输出#2
10 20 30
说明/提示
In the first example, the discomfort of the circle is equal to 1 , since the corresponding absolute differences are 1 , 1 , 1 and 0 . Note, that sequences [2,3,2,1,1] and [3,2,1,1,2] form the same circles and differ only by the selection of the starting point.
In the second example, the discomfort of the circle is equal to 20 , since the absolute difference of 10 and 30 is equal to 20 .