Problem C
Radio Transmission
A radio station needs to transmit a message to several recipients. To ensure all listeners get it, the message is played again and again in a continuous loop.
You’re given a sequence of characters recieved by one of the recipients. It is known that the sequence is at least as long as the message.
Your task is to write a program the extracts the message
transmitted by the station. More formally, your program needs
to find the shortest subsring
Input
The first line contains a single integer
Output
The program should write one line to standard output
containing a single integer: the length
Explanation of Sample 1
The message could (among other options) be “abc”, “cab” or
“abcabc”, but there is no possible
message shorter than
Sample Input 1 | Sample Output 1 |
---|---|
8 cabcabca |
3 |