生活随笔
收集整理的這篇文章主要介紹了
HihoCoder - 1465 后缀自动机五·重复旋律8(后缀自动机)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目鏈接:點擊查看
題目大意:給出一個模式串,在給出多個匹配串,問每個匹配串與其“循環相似旋律”的字符串,在模式串中出現的總次數,“循環相似旋律”指的是一個字符串不斷將首字符放到末尾去所形成的新的字符串,一個字符串最多有 len 個“循環相似旋律”字符串
題目分析:看完題目后很容易想到AC自動機上去,但如果真用AC自動機做的話,時間復雜度將是n*n的,因為每個字符串都有 n 個“循環相似旋律”字符串,所以我們可以考慮將后綴自動機變形一下當做AC自動機來用,具體題解在題目中已經解釋的很清楚了,這里就只貼個代碼吧
代碼:
?
#include<iostream>
#include<cstdio>
#include<string>
#include<ctime>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<stack>
#include<climits>
#include<queue>
#include<map>
#include<set>
#include<sstream>
using namespace std;typedef long long LL;typedef unsigned long long ull;const int inf=0x3f3f3f3f;const int N=1e5+100;char s[N<<1];int tot=1,last=1,id[N<<1],tong[N<<1],cnt[N<<1],vis[N<<1];struct Node
{int ch[26];int fa,len;
}st[N<<1];void add(int x)
{int p=last,np=last=++tot;st[np].len=st[p].len+1;cnt[np]++;while(p&&!st[p].ch[x])st[p].ch[x]=np,p=st[p].fa;if(!p)st[np].fa=1;else{int q=st[p].ch[x];if(st[p].len+1==st[q].len)st[np].fa=q;else{int nq=++tot;st[nq]=st[q]; st[nq].len=st[p].len+1;st[q].fa=st[np].fa=nq;while(p&&st[p].ch[x]==q)st[p].ch[x]=nq,p=st[p].fa;//向上把所有q都替換成nq}}
}void radix_sort()
{for(int i=1;i<=tot;i++)tong[st[i].len]++;for(int i=1;i<=tot;i++)tong[i]+=tong[i-1];for(int i=1;i<=tot;i++)id[tong[st[i].len]--]=i;
}int main()
{
//#ifndef ONLINE_JUDGE
// freopen("input.txt","r",stdin);
//#endif
// ios::sync_with_stdio(false);scanf("%s",s);int n=strlen(s);for(int i=0;i<n;i++)add(s[i]-'a');radix_sort();for(int i=tot;i>=1;i--){int cur=id[i],fa=st[cur].fa;cnt[fa]+=cnt[cur];}int w;cin>>w;while(w--){scanf("%s",s);int len=strlen(s);for(int i=0;i<len-1;i++)s[i+len]=s[i];int u=1,l=0,ans=0;for(int i=0;i<2*len-1;i++){int to=s[i]-'a';while(u!=1&&!st[u].ch[to])//向上找到一個可以向下走的結點 {u=st[u].fa;l=st[u].len;}if(st[u].ch[to])//如果該結點存在,則走一步 {u=st[u].ch[to];l++;}else//否則歸零 {u=1;l=0;}while(l>=len&&st[st[u].fa].len+1>len)//這里要求出最靠近n的maxlen(u)>=n len(fa)+1==minlen(u) {u=st[u].fa;l=st[u].len;}if(l>=len&&vis[u]!=w+1){vis[u]=w+1;ans+=cnt[u];}}printf("%d\n",ans);}return 0;
}
?
總結
以上是生活随笔為你收集整理的HihoCoder - 1465 后缀自动机五·重复旋律8(后缀自动机)的全部內容,希望文章能夠幫你解決所遇到的問題。
如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。