CF1526D.Kill Anton

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

After rejecting 1010010^{100} data structure problems, Errorgorn is very angry at Anton and decided to kill him.

Anton's DNA can be represented as a string aa which only contains the characters "ANTON" (there are only 44 distinct characters).

Errorgorn can change Anton's DNA into string bb which must be a permutation of aa . However, Anton's body can defend against this attack. In 11 second, his body can swap 22 adjacent characters of his DNA to transform it back to aa . 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 BB . Can you help him?

输入格式

The first line of input contains a single integer tt (1t100000)(1 \leq t \leq 100000) — the number of testcases.

The first and only line of each testcase contains 11 string aa ( 1a1000001 \leq |a| \leq 100000 ). aa consists of only the characters "A", "N", "O" and "T".

It is guaranteed that the sum of a|a| over all testcases does not exceed 100000100000 .

输出格式

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

输入输出样例

  • 输入#1

    4
    ANTON
    NAAN
    AAAAAA
    OAANTTON

    输出#1

    NNOTA
    AANN
    AAAAAA
    TNNTAOOA

说明/提示

For the first testcase, it takes 77 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 22 seconds for Anton's body to transform AANN to NAAN. Note that other strings such as NNAA and ANNA will also be accepted.

首页