2019ICPC(徐州) - Loli, Yen-Jen, and a cool problem(广义后缀自动机)
生活随笔
收集整理的這篇文章主要介紹了
2019ICPC(徐州) - Loli, Yen-Jen, and a cool problem(广义后缀自动机)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目鏈接:點擊查看
題目大意:給出一棵以點1為根的樹,每個節點代表一個大寫字母,現在給出 m 次詢問,每次詢問以點 x 開始向上 l 個單位所組成的字符串所出現的次數
題目分析:廣義后綴自動機的模板題目了,存一下模板
代碼:
#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> #include<unordered_map> using namespace std;typedef long long LL;typedef unsigned long long ull;const int inf=0x3f3f3f3f;const int N=3e5+100;char s[N];int last_id[N];int tot=1,last=1,id[N<<1],tong[N<<1],cnt[N<<1];struct Node {int ch[26];int fa,len; }st[N<<1];void add(int x) {int p=last;//if(st[p].ch[x]){int q=st[p].ch[x];if(st[q].len==st[p].len+1)last=q;else{int np=last=++tot;st[np].len=st[p].len+1;st[np].fa=st[q].fa;st[q].fa=np;for(int i=0;i<26;i++)st[np].ch[i]=st[q].ch[i];while(st[p].ch[x]==q)st[p].ch[x]=np,p=st[p].fa;}return;}//int 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}} }void radix_sort() {memset(tong,0,sizeof(tong));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); // freopen("output.txt","w",stdout); //#endif // ios::sync_with_stdio(false);int n,m;scanf("%d%d%s",&n,&m,s+1); add(s[1]-'A');last_id[1]=last; cnt[last]++;for(int i=2;i<=n;i++){int fa;scanf("%d",&fa);last=last_id[fa];add(s[i]-'A');last_id[i]=last;cnt[last]++;}radix_sort();for(int i=tot;i>=1;i--){int cur=id[i],fa=st[cur].fa;cnt[fa]+=cnt[cur];}while(m--){int x,l;scanf("%d%d",&x,&l);int pos=last_id[x];while(st[st[pos].fa].len>=l)pos=st[pos].fa;printf("%d\n",cnt[pos]);}return 0; }?
總結
以上是生活随笔為你收集整理的2019ICPC(徐州) - Loli, Yen-Jen, and a cool problem(广义后缀自动机)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 牛客 - 牛牛与牛妹的约会(贪心)
- 下一篇: CodeForces - 1301F S