Codeforces Beta Round #7 D. Palindrome Degree —— 字符串哈希

题目链接:http://codeforces.com/contest/7/problem/D


D. Palindrome Degree
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

String s of length n is called k-palindrome, if it is a palindrome itself, and its prefix and suffix of length  are (k - 1)-palindromes. By definition, any string (even empty) is 0-palindrome.

Let's call the palindrome degree of string s such a maximum number k, for which s is k-palindrome. For example, "abaaba" has degree equals to 3.

You are given a string. Your task is to find the sum of the palindrome degrees of all its prefixes.

Input

The first line of the input data contains a non-empty string, consisting of Latin letters and digits. The length of the string does not exceed 5·106. The string is case-sensitive.

Output

Output the only number — the sum of the polindrome degrees of all the string's prefixes.

Examples
input
a2A
output
1
input
abacaba
output
6




代码如下:

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 typedef long long LL;
 4 const double eps = 1e-6;
 5 const int INF = 2e9;
 6 const LL LNF = 9e18;
 7 const int mod = 1e9+7;
 8 const int maxn = 5e6+10;
 9 
10 char s[maxn];
11 int dp[maxn];
12 
13 int main()
14 {
15     scanf("%s",s+1);
16     int l = 0, r = 0, m = 1;
17     for(int i = 1; s[i]; i++)
18     {
19         l = l*137+s[i];
20         r = r+s[i]*m, m *= 137;
21         if(l==r)
22             dp[i] = dp[i/2]+1;
23     }
24 
25     int ans = 0;
26     for(int i = 1; s[i]; i++)
27         ans += dp[i];
28     printf("%d
",ans);
29 }
View Code


原文地址:https://www.cnblogs.com/DOLFAMINGO/p/7538663.html