SPOJ - LCS Longest Common Substring(后缀自动机)
生活随笔
收集整理的這篇文章主要介紹了
SPOJ - LCS Longest Common Substring(后缀自动机)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目鏈接:點擊查看
題目大意:給出兩個字符串,求出其最長公共子串的長度
題目分析:可以對第一個字符串建立SAM,然后令第二個字符串在建好的SAM上跑就好了,如果遇到不能跑的點,就往上折返直到找到可以繼續向下走的結點然后繼續走就好了,時間復雜度為O(n)
代碼:
#include<iostream> #include<cstdio> #include<string> #include<ctime> #include<cmath> #include<cstring> #include<algorithm> #include<stack> #include<queue> #include<map> #include<set> #include<sstream> #include<unordered_map> using namespace std;typedef long long LL;const int inf=0x3f3f3f3f;const int N=3e5+100;int tot=1,last=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;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}} }char s[N],t[N];int main() { // freopen("input.txt","r",stdin); // ios::sync_with_stdio(false);scanf("%s%s",s,t);int lens=strlen(s);int lent=strlen(t);for(int i=0;i<lens;i++)add(s[i]-'a');int ans=0,k=1,cnt=0;for(int i=0;i<lent;i++){int to=t[i]-'a';if(st[k].ch[to]){cnt++;k=st[k].ch[to];ans=max(ans,cnt);}else{while(k&&!st[k].ch[to])k=st[k].fa;if(k){cnt=st[k].len+1;k=st[k].ch[to];ans=max(ans,cnt);}else{cnt=0;k=1;}}}printf("%d\n",ans);return 0; }?
總結
以上是生活随笔為你收集整理的SPOJ - LCS Longest Common Substring(后缀自动机)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 后缀自动机模板
- 下一篇: SPOJ - LCS2 Longest