1798. Decompression

单点时限: 2.0 sec

内存限制: 256 MB

Consider the following scheme: for permuting a string of letters: first we create all different rotations of the string, then we sort them in lexicographical order, and finally we take the last letter of each rotation and concatenate them to form a new string.

For the string “LEIDEN.”, for example, the seven rotation in lexicographical order are(where the period ‘.’ comes before any letter):

.LEIDEN

DEN.LEI

EIDEN.L

EN.LEID

IDEN.LE

LEIDEN.

N.LEIDE

so this results in the string “NILDE.E”

At first glance this permutation doesn’t seem useful at all but it has an interesting property. If there are a lot of equal substrings in the original string (which might happen in case of a real language), the a lot of equal consecutive letters occur after the permutaion. Therefor the resulting string is very suitable for block compression. where blocks of equals letters are replaced by that letter followd by a number which specifies how often that letter occurs. If the letter only occurs once, no number is added. For example the string “AAABCC” would be replaced by “A3BC2”.

Your task is now to decompress this final string to the original string. Note however, that permuting the string it not entirely reversible: you can only obtain the original string up to a rotaion (i.e.: each rotation would lead to same permuted string). To overcome this, the original string will consist of uppercase letters followed by a single period(‘.’), this will define the initial rotation.

输入格式

The first line of the input contains a single number: the number of test cases to follow. Each test case has the following format:

One line with the compressed string.This string will consist of uppercase letters, numbers and a single period, and will be a valid block compressed string. The length of the original string that resulted in the compressed one will be no more then 1000000 characters.

输出格式

For every test case in the input, the output should contain a single line with the decompressed string.

样例

Input
3
NILDE.E
N13.E13
LRSGORTNOMOMAIOSROC2.GAPTE2NS
Output
LEIDEN.
ENENENENENENENENENENENENEN.
PROGRAMMINGCONTESTSARESOCOOL.

1 人解决,2 人已尝试。

1 份提交通过,共有 5 份提交。

9.8 EMB 奖励。

创建: 16 年,5 月前.

修改: 6 年,7 月前.

最后提交: 15 年,4 月前.

来源: The 2006 Benelux Algorithm Programming Contest

题目标签