Folding
Time Limit: 10 Seconds Memory Limit: 32768 KB
Special Judge
> A sequence that contains a single character from 'A' to 'Z' is considered
to be a folded sequence. Unfolding of this sequence produces the same sequence
of a single character itself.
> If S and Q are folded sequences, then SQ is also a folded sequence. If
S unfolds to S' and Q unfolds to Q', then SQ unfolds to S'Q'.
> If S is a folded sequence, then X(S) is also a folded sequence, where X
is a decimal representation of an integer number greater than 1. If S unfolds
to S', then X(S) unfolds to S' repeated X times.
According to this definition it is easy to unfold any given folded sequence.
However, Bill is much more interested in the reverse transformation. He wants
to fold the given sequence in such a way that the resulting folded sequence
contains the least possible number of characters.
Input
The input file contains a single line of characters from 'A' to 'Z' with at least 1 and at most 100 characters.
Process to the end of input.
Output
Write to the output file a single line that contains the shortest possible folded sequence that unfolds to the sequence that is given in the input file. If there are many such sequences then write any one of them.
Sample Input
AAAAAAAAAABABABCCD NEERCYESYESYESNEERCYESYESYES
Sample Output
9(A)3(AB)CCD 2(NEERC3(YES))Submit
Source: Northeastern Europe 2002