2043. Arranging Amplifiers

单点时限: 2.0 sec

内存限制: 256 MB

Scientists at the TIFR, Mumbai, are doing some cutting edge research on the Propagation of Signals. A young researcher comes up with a method of progressively amplifying signals, as they progress along a path. The method involves the placing of Amplifiers at regular distances along the line. Each amplifier is loaded with a number a(i), which is called its amplification factor. The method of amplification is simple: an amplifier which recieves a signal of strength X, and has Y loaded in it, results in a signal of strength Y^X [ Y to the power X]. In course of his research, the young scientist tries to find out, that given a set of n amplifiers loaded with a(0), a(1), a(2), ...., a(n-1), which particular permutation of these amplifiers, when placed at successive nodes, with the initial node given a signal of strength 1, produces the strongest output signal.

this is better illustrated by the following example : 5 6 4

4^(5^(6^1)) is the strength of the strongest signal, which is generated by putting amplifier loaded with 6 in first place, 5 in second place and 4 in third place.

Given a list of integers specifying the set of amplifiers at hand, you must find out the order in which they must be placed,to get the highest signal strength. In case their exist multiple permutations with same output, you should print the one which has bigger amplifiers first.

输入格式

First line of input contains T, the number of test cases. For each test case first line contains a number ni, which is equal to the number of amplifiers available. Next line contains n integers, separated by spaces which denote the values with which the amplifiers are loaded.

输出格式

Output contains T lines, one for each test case. Each line contains ni integers, denoting the order in which the amplifiers should be kept such that the result is strongest.

样例

Input
2
3
5 6 4
2
2 3
Output
6 5 4
2 3
Constraints And Limits
Dataset 1: T ≤ 20, Ni ≤ 10^5, Each amplifier will be loaded with a positive integer p, 0 < p ≤ 10^9.No two amplifier > 1shall be loaded with the same integer.

4 人解决,5 人已尝试。

7 份提交通过,共有 13 份提交。

7.2 EMB 奖励。

创建: 16 年,4 月前.

修改: 6 年,10 月前.

最后提交: 13 年,3 月前.

来源: Code 08

题目标签