CF235C-Cyclical Quest【SAM】
生活随笔
收集整理的這篇文章主要介紹了
CF235C-Cyclical Quest【SAM】
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
正題
題目鏈接:https://www.luogu.com.cn/problem/CF235C
題目大意
一個文本串sss。詢問nnn個匹配的本質不同的循環同構在文本串中出現了幾次。
解題思路
我們匹配完原串之后,相當與每次在頭部刪去一個字符然后又在末尾加上一個字符。使用SAMSAMSAM匹配的話,發現每次在parentsparentsparents樹上條就相當于刪去頭部的字符,因為parentsparentsparents樹上的祖先是屬于同一個endposendposendpos類的,所以后面的字符不會改變,我們一直跳到滿足L∈[minlenx,maxlenx]L\in [minlen_x,maxlen_x]L∈[minlenx?,maxlenx?]的節點即可。
要求本質不同的話,就直接在統計過答案的點打上標記,后面不統計即可。
時間復雜度O(∣s∣+∑i=1n∣t∣)O(|s|+\sum_{i=1}^n|t|)O(∣s∣+∑i=1n?∣t∣)
codecodecode
#include<cstdio> #include<cstring> #include<algorithm> using namespace std; const int N=2e6+10; int n,cnt,len[N],fa[N],siz[N],ch[N][26]; int last,ans,mark[N],c[N],p[N]; char s[N]; void Insert(int c){int p=last,np=last=++cnt;len[np]=len[p]+1;siz[np]++;for(;p&&!ch[p][c];p=fa[p])ch[p][c]=np;if(!p)fa[np]=1;else{int q=ch[p][c];if(len[q]==len[p]+1)fa[np]=q;else{int nq=++cnt;len[nq]=len[p]+1;memcpy(ch[nq],ch[q],sizeof(ch[nq]));fa[nq]=fa[q];fa[np]=fa[q]=nq;for(;p&&ch[p][c]==q;p=fa[p])ch[p][c]=nq;}}return; } void solve(int p){int l=strlen(s),L=0;int x=1;for(int i=0;i<l;i++){int c=s[i]-'a';while(x!=1&&!ch[x][c])x=fa[x],L=len[x];if(ch[x][c])x=ch[x][c],L++;}if(L==l&&mark[x]!=p)mark[x]=p,ans+=siz[x];for(int i=0;i<l-1;i++){int c=s[i]-'a';while(x!=1&&!ch[x][c])x=fa[x],L=len[x];if(ch[x][c])x=ch[x][c],L++;if(L>l&&--L==len[fa[x]])x=fa[x];if(L==l&&mark[x]!=p)mark[x]=p,ans+=siz[x];}return; } int main() {scanf("%s",s);int l=strlen(s);cnt=last=1;for(int i=0;i<l;i++)Insert(s[i]-'a');for(int i=1;i<=cnt;i++) c[len[i]]++;for(int i=1;i<=l;i++) c[i]+=c[i-1];for(int i=1;i<=cnt;i++) p[c[len[i]]--]=i;for(int i=cnt;i>=1;i--) siz[fa[p[i]]]+=siz[p[i]];scanf("%d",&n);for(int i=1;i<=n;i++){ans=0;scanf("%s",s),solve(i);printf("%d\n",ans);}return 0; }總結
以上是生活随笔為你收集整理的CF235C-Cyclical Quest【SAM】的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 慰藉的读音 慰藉解释
- 下一篇: ps怎么弄渐变色(ps怎么弄渐变色背景)