CF7D-Palindrome Degree【字符串hash,dp】
生活随笔
收集整理的這篇文章主要介紹了
CF7D-Palindrome Degree【字符串hash,dp】
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
正題
luogu鏈接:https://www.luogu.org/problemnew/show/CF7D
題目大意
定義kkk級回文串為一個字符串的(1,?n/2?)(1,\lfloor n/2 \rfloor)(1,?n/2?)和(n??n/2?,n)(n-\lfloor n/2 \rfloor,n)(n??n/2?,n)都是k?1k-1k?1級回文串。
求這個字符的所有前綴的回文串等級和。
解題思路
其實挺簡單的,如果一個前綴是回文串,那么fi=f?i/2?+1f_i=f_{\lfloor i/2\rfloor}+1fi?=f?i/2??+1
然后答案就是∑i=1nfi\sum_{i=1}^nf_i∑i=1n?fi?
然后字符串hashhashhash判斷回文串就好了
codecodecode
#include<cstdio> #include<algorithm> #include<cstring> #define ull unsigned long long using namespace std; const int N=5e6+10; const ull p=233; int n,f[N],ans; char s[N]; ull ha[N],pows[N],fha[N]; ull ask(int l,int r) {return ha[r]-ha[l-1]*pows[r-l+1];} ull fask(int l,int r) {return fha[l]-fha[r+1]*pows[r-l+1];} int main() {scanf("%s",s+1);n=strlen(s+1);pows[0]=1;for(int i=1;i<=n;i++){pows[i]=pows[i-1]*p;ha[i]=ha[i-1]*p+(s[i]-'a');}for(int i=n;i>=1;i--)fha[i]=fha[i+1]*p+(s[i]-'a');ans=f[1]=1;for(int i=2;i<=n;i++)if(ask(1,i/2)==fask((i+1)/2+1,i))f[i]=f[i/2]+1,ans+=f[i];printf("%d",ans); } 創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的CF7D-Palindrome Degree【字符串hash,dp】的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 电脑配置低系统哪个最好用(电脑配置低系统
- 下一篇: 电脑配置推荐2000左右(电脑配置推荐2