#P3538. [POI 2012] OKR-A Horrible Poem
[POI 2012] OKR-A Horrible Poem
题目描述
Byteie boy has to learn a fragment of a certain poem by heart. The poem, following the best lines of modern art, is a long string consisting of lowercase English alphabet letters only. Obviously, it sounds horrible, but that is the least of Byteie's worries. First and foremost, he completely forgot which fragment is he supposed to learn. And they all look quite difficult to memorize...
There is hope, however: some parts of the poem exhibit certain regularity. In particular, every now and then a fragment, say , is but a multiple repetition of another fragment, say (in other words, , i.e., , where is an integer). In such case we say that is a full period of (in particular, every string is its own full period). If a given fragment has a short full period, Byteie's task will be easy. The question remains... which fragment was that?
Make a gift for Byteie - write a program that will read the whole poem as well as a list of fragments that Byteie suspects might be the one he is supposed to memorize, and for each of them determines its shortest full period.
输入格式
In the first line of the standard input there is a single integer (). In the second line there is a string of length consisting of lowercase English alphabet letters - the poem. We number the positions of its successive characters from to .
The next line holds a single integer () denoting the number of fragments. Then the following lines give queries, one per line. Each query is a pair of integers and (), separated by a single space, such that the answer to the query should be the length of the shortest full period of the poem's fragment that begins at position and ends at position .
In tests worth in total 42% of the points holds in addition. In some of those, worth 30% of points in total, holds as well.
输出格式
Your program should print lines on the standard output. The - th of these lines should hold a single integer - the answer to the - th query.
8
aaabcabc
3
1 3
3 8
4 8
1
3
5