Problem A
Stammering Aliens
Dr. Ellie Arroway has established contact with an extraterrestrial civilization. However, all efforts to decode their messages have failed so far because, as luck would have it, they have stumbled upon a race of stuttering aliens! Her team has found out that, in every long enough message, the most important words appear repeated a certain number of times as a sequence of consecutive characters, even in the middle of other words. Furthermore, sometimes they use contractions in an obscure manner. For example, if they need to say bab twice, they might just send the message babab, which has been abbreviated because the second b of the first word can be reused as the first b of the second one.
Thus, the message contains possibly overlapping repetitions of the same words over and over again. As a result, Ellie turns to you, S.R. Hadden, for help in identifying the gist of the message.
Given an integer
In case there are several solutions, the substring with the rightmost occurrence is preferred (see example 3).
Input
The input contains several test cases. Each test case
consists of a line with an integer
Output
Print one line of output for each test case. If there is no
solution, output none; otherwise,
print two integers in a line, separated by a space. The first
integer denotes the maximum length of a substring appearing at
least
Sample Input 1 | Sample Output 1 |
---|---|
3 baaaababababbababbab 11 baaaababababbababbab 3 cccccc 0 |
5 12 none 4 2 |