日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

SPOJ - SUBLEX Lexicographical Substring Search(后缀自动机)

發(fā)布時(shí)間:2024/4/11 编程问答 29 豆豆
生活随笔 收集整理的這篇文章主要介紹了 SPOJ - SUBLEX Lexicographical Substring Search(后缀自动机) 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

題目鏈接:點(diǎn)擊查看

題目大意:給出一個(gè)字符串 s ,再給出 m 次詢問(wèn),每次詢問(wèn)需要回答字符串中第 k 小的的子串(去重后)

題目分析:可以先對(duì)字符串 s 構(gòu)造SAM,因?yàn)槭侨ブ睾蟮淖哟?#xff0c;正好對(duì)應(yīng)了SAM上的每個(gè)節(jié)點(diǎn),所以我們可以在SAM上dfs統(tǒng)計(jì)每條路下面都還有多少條路可以走,以此作為每次查詢時(shí)dfs的依據(jù),之后按照字典序的狀態(tài)遍歷就好了

代碼:

#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=1e5+100;char s[N];int tot=1,last=1,cnt[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;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}} }int dfs(int u) {if(cnt[u])return cnt[u];cnt[u]=1;for(int i=0;i<26;i++){int v=st[u].ch[i];if(v){dfs(v);cnt[u]+=cnt[v];}}return cnt[u]; }void solve(int cur,int k,int len) {k--;if(k==0){s[len]=0;puts(s);return;}for(int i=0;i<26;i++){int to=st[cur].ch[i];if(!to)continue;if(cnt[to]<k)k-=cnt[to];else{s[len]='a'+i;solve(to,k,len+1);return;}} }int main() { // freopen("input.txt","r",stdin); // ios::sync_with_stdio(false);scanf("%s",s);int len=strlen(s);for(int i=0;i<len;i++)add(s[i]-'a');dfs(1);int m;scanf("%d",&m);while(m--){int k;scanf("%d",&k);solve(1,k+1,0);}return 0; }

?

總結(jié)

以上是生活随笔為你收集整理的SPOJ - SUBLEX Lexicographical Substring Search(后缀自动机)的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。