题库练习 Challenging Cliffs
← 上一题 下一题 →

A14290 | Challenging Cliffs

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

题目描述

You are a game designer and want to make an obstacle course. The player will walk from left to right. You have $n$ heights of mountains already selected and want to arrange them so that the absolute difference of the heights of the first and last mountains is as small as possible.

In addition, you want to make the game difficult, and since walking uphill or flat is harder than walking downhill, the difficulty of the level will be the number of mountains $i$ ( $1 \leq i < n$ ) such that $h_i \leq h_{i+1}$ where $h_i$ is the height of the $i$ -th mountain. You don't want to waste any of the mountains you modelled, so you have to use all of them.

From all the arrangements that minimize $|h_1-h_n|$ , find one that is the most difficult. If there are multiple orders that satisfy these requirements, you may find any.

输入格式

The first line will contain a single integer $t$ ( $1 \leq t \leq 100$ ) — the number of test cases. Then $t$ test cases follow.

The first line of each test case contains a single integer $n$ ( $2 \leq n \leq 2 \cdot 10^5$ ) — the number of mountains.

The second line of each test case contains $n$ integers $h_1,\ldots,h_n$ ( $1 \leq h_i \leq 10^9$ ), where $h_i$ is the height of the $i$ -th mountain.

It is guaranteed that the sum of $n$ over all test cases does not exceed $2 \cdot 10^5$ .

输出格式

For each test case, output $n$ integers — the given heights in an order that maximizes the difficulty score among all orders that minimize $|h_1-h_n|$ .

If there are multiple orders that satisfy these requirements, you may output any.

输入输出样例

输入 #1
2
4
4 2 1 2
2
3 1
输出 #1
2 4 1 2 
1 3
C++ 编辑器
输入
输出