[POI2006] OKR-Periods of Words
题面翻译
对于一个仅含小写字母的字符串 aaa,ppp 为 aaa 的前缀且 p≠ap\ne ap=a,那么我们称 ppp 为 aaa 的 proper 前缀。
规定字符串 QQQ(可以是空串)表示 aaa 的周期,当且仅当 QQQ 是 aaa 的 proper 前缀且 aaa 是 Q+QQ+QQ+Q 的前缀。
例如 ab
是 abab
的一个周期,因为 ab
是 abab
的 proper 前缀,且 abab
是 ab+ab
的前缀。
求给定字符串所有前缀的最大周期长度之和。
题目描述
A string is a finite sequence of lower-case (non-capital) letters of the English alphabet. Particularly, it may be an empty sequence, i.e. a sequence of 0 letters. By A=BC we denotes that A is a string obtained by concatenation (joining by writing one immediately after another, i.e. without any space, etc.) of the strings B and C (in this order). A string P is a prefix of the string !, if there is a string B, that A=PB. In other words, prefixes of A are the initial fragments of A. In addition, if P!=A and P is not an empty string, we say, that P is a proper prefix of A.
A string Q is a period of Q, if Q is a proper prefix of A and A is a prefix (not necessarily a proper one) of the string QQ. For example, the strings abab and ababab are both periods of the string abababa. The maximum period of a string A is the longest of its periods or the empty string, if A doesn’t have any period. For example, the maximum period of ababab is abab. The maximum period of abc is the empty string.
Task Write a programme that:
reads from the standard input the string’s length and the string itself,calculates the sum of lengths of maximum periods of all its prefixes,writes the result to the standard output.
输入格式
In the first line of the standard input there is one integer kkk (1≤k≤1 000 0001\le k\le 1\ 000\ 0001≤k≤1 000 000) - the length of the string. In the following line a sequence of exactly kkk lower-case letters of the English alphabet is written - the string.
输出格式
In the first and only line of the standard output your programme should write an integer - the sum of lengths of maximum periods of all prefixes of the string given in the input.
样例 #1
样例输入 #1
8
babababa
样例输出 #1
24
数据范围与提示
对于全部数据,1<k<1061\lt k\lt 10^61<k<106。
人话翻译:
给定一个字符串A,求他所有前缀B(包括A=B)的最大周期,周期即B的前缀C最长,C要满足B是CC的字串。实例:
ABABABAB的所有前缀有:−−−−−−−−−周期为−−−长度ABABABAB的所有前缀有:---------周期为---长度ABABABAB的所有前缀有:−−−−−−−−−周期为−−−长度
A−−−−−−−−−−−−−−−−−−−−无−−−−−0A--------------------无-----0A−−−−−−−−