Kill Anton

题意翻译

给定一个字符串a,你可以任意打乱a中字符的顺序,记打乱后的字符串为b。记b的价值为将b转换为a所需的最小交换次数(交换指交换两个相邻元素)。输出b使得b的价值最大。 若有多种答案,任意输出一种。

题目描述

After rejecting $ 10^{100} $ data structure problems, Errorgorn is very angry at Anton and decided to kill him. Anton's DNA can be represented as a string $ a $ which only contains the characters "ANTON" (there are only $ 4 $ distinct characters). Errorgorn can change Anton's DNA into string $ b $ which must be a permutation of $ a $ . However, Anton's body can defend against this attack. In $ 1 $ second, his body can swap $ 2 $ adjacent characters of his DNA to transform it back to $ a $ . Anton's body is smart and will use the minimum number of moves. To maximize the chance of Anton dying, Errorgorn wants to change Anton's DNA the string that maximizes the time for Anton's body to revert his DNA. But since Errorgorn is busy making more data structure problems, he needs your help to find the best string $ B $ . Can you help him?

输入输出格式

输入格式


The first line of input contains a single integer $ t $ $ (1 \leq t \leq 100000) $ — the number of testcases. The first and only line of each testcase contains $ 1 $ string $ a $ ( $ 1 \leq |a| \leq 100000 $ ). $ a $ consists of only the characters "A", "N", "O" and "T". It is guaranteed that the sum of $ |a| $ over all testcases does not exceed $ 100000 $ .

输出格式


For each testcase, print a single string, $ b $ . If there are multiple answers, you can output any one of them. $ b $ must be a permutation of the string $ a $ .

输入输出样例

输入样例 #1

4
ANTON
NAAN
AAAAAA
OAANTTON

输出样例 #1

NNOTA
AANN
AAAAAA
TNNTAOOA

说明

For the first testcase, it takes $ 7 $ seconds for Anton's body to transform NNOTA to ANTON: NNOTA $ \to $ NNOAT $ \to $ NNAOT $ \to $ NANOT $ \to $ NANTO $ \to $ ANNTO $ \to $ ANTNO $ \to $ ANTON. Note that you cannot output strings such as AANTON, ANTONTRYGUB, AAAAA and anton as it is not a permutation of ANTON. For the second testcase, it takes $ 2 $ seconds for Anton's body to transform AANN to NAAN. Note that other strings such as NNAA and ANNA will also be accepted.