308549: CF1537C. Challenging Cliffs

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Challenging Cliffs

题意翻译

你是一位游戏设计师,你想要制作一条障碍赛道。其中玩家从左向右行走。 你有 $n$ 个各有高度的山峰,你需要重排山峰,使得第一个山峰和最后一个山峰的高度之差的**绝对值**最小。 此外,为了使游戏更加困难,并且上山总是比下山难,可以记游戏的困难程度为满足 $h_i\le h_{i+1} (1\le i<n)$ 的山峰数量。 对于所有满足第一个条件的山峰排列方案,寻找其中困难程度最大的,如果有多个,输出任意一个。

题目描述

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

说明

In the first test case: The player begins at height $ 2 $ , next going up to height $ 4 $ increasing the difficulty by $ 1 $ . After that he will go down to height $ 1 $ and the difficulty doesn't change because he is going downhill. Finally the player will go up to height $ 2 $ and the difficulty will increase by $ 1 $ . The absolute difference between the starting height and the end height is equal to $ 0 $ and it's minimal. The difficulty is maximal. In the second test case: The player begins at height $ 1 $ , next going up to height $ 3 $ increasing the difficulty by $ 1 $ . The absolute difference between the starting height and the end height is equal to $ 2 $ and it's minimal as they are the only heights. The difficulty is maximal.

Input

题意翻译

你是一位游戏设计师,你想要制作一条障碍赛道。其中玩家从左向右行走。 你有 $n$ 个各有高度的山峰,你需要重排山峰,使得第一个山峰和最后一个山峰的高度之差的**绝对值**最小。 此外,为了使游戏更加困难,并且上山总是比下山难,可以记游戏的困难程度为满足 $h_i\le h_{i+1} (1\le i<n)$ 的山峰数量。 对于所有满足第一个条件的山峰排列方案,寻找其中困难程度最大的,如果有多个,输出任意一个。

加入题单

算法标签: