hdu-5384Danganronpa+多校訓練+AC自動機
題目連結:點選進入
其實就是一個很簡單的AC自動機的題目,只是需要注意下在記錄查詢的字串時,需要將他們連成一個整體進行記錄,否則陣列是開不下的。
程式碼如下:
#include<iostream>
#include<cstring>
#include<cstdio>
#include<queue>
using namespace std;
#define ll long long
const int maxn=100000+100;
char str[maxn];
struct Trie
{
int next[maxn][26],fail[maxn],end[maxn];
int root,L;
int newnode()
{
memset(next[L],-1,sizeof(next[L]));
end[L++]=0;
return L-1;
}
void init()
{
L=0;
root=newnode();
}
void insert(char buf[])
{
int len=strlen(buf);
int now=root;
for(int i=0;i<len;i++)
{
if(next[now][buf[i]-'a']==-1)
next[now][buf[i]-'a']=newnode();
now=next[now][buf[i]-'a'];
}
end[now]++;
}
void build()
{
queue<int>Q;
fail[root]=root;
for(int i=0;i<26;i++)
{
if(next[root][i]==-1)
next[root][i]=root;
else
{
fail[next[root][i]]=root;
Q.push(next[root][i]);
}
}
while(!Q.empty())
{
int now=Q.front();
Q.pop();
for(int i=0;i<26;i++)
{
if(next[now][i]==-1)
next[now][i]=next[fail[now]][i];
else
{
fail[next[now][i]]=next[fail[now]][i];
Q.push(next[now][i]);
}
}
}
}
ll query(int x,int len)
{
int now=root;
ll ans=0;
for(int i=0;i<len;i++)
{
now=next[now][str[x+i]-'a'];
int temp=now;
while(temp!=root)
{
ans+=end[temp];
temp=fail[temp];
}
}
printf("%lld\n",ans);
}
};
Trie ac;
int left1[maxn],len[maxn];
char ss[maxn];
int main()
{
//freopen("in.txt","r",stdin);
int t;
scanf("%d",&t);
while(t--)
{
int n,m;
scanf("%d%d",&n,&m);
int temp=0;
for(int i=0;i<n;i++)
{
scanf("%s",str+temp);
left1[i]=temp;
len[i]=strlen(str)-temp;
temp=strlen(str);
}
ac.init();
for(int i=0;i<m;i++)
{
scanf("%s",ss);
ac.insert(ss);
}
ac.build();
for(int i=0;i<n;i++)
ac.query(left1[i],len[i]);
}
return 0;
}
相關文章
- AC 自動機——多模式串匹配模式
- [複習] AC自動機
- AC自動機 提高篇
- AC自動機:Tire樹+KMPKMP
- 簡單版AC自動機
- AC自動機+trie樹實現高效多模式匹配字典模式
- 2024牛客暑期多校訓練營9
- 2024牛客暑期多校訓練營8
- 2024牛客暑期多校訓練營6
- 2024牛客暑期多校訓練營4
- 2024牛客暑期多校訓練營5
- 2024牛客暑期多校訓練營2
- 2024牛客暑期多校訓練營1
- AC 自動機學習筆記筆記
- AC自動機學習筆記筆記
- 專題十七 AC自動機【Kuangbin】
- 2024牛客暑期多校訓練營2 HI
- Wenet多機多卡分散式訓練分散式
- 2024牛客暑期多校訓練營10 - VP記錄
- 2024牛客暑期多校訓練營9 - VP記錄
- 2024牛客多校訓練營覆盤:上篇(1~5)
- AC自動機+字典序+樹狀陣列陣列
- 從零開始發明 AC 自動機
- 2024牛客暑期多校訓練營2 解題報告
- hdu2222--Keywords Search+AC自動機模板
- deepspeed 訓練多機多卡報錯 ncclSystemError Last errorErrorAST
- 2024牛客暑期多校訓練營10 - L. Tada! - 題解
- 2024牛客暑期多校訓練營4 - J. Zero (卡常)
- MinkowskiEngine多GPU訓練GPU
- Aho-Corasick 演算法 AC自動機實現演算法
- 19_04_02校內訓練[deadline]
- 2020牛客暑期多校訓練營(第一場)H Minimum-cost Flow
- 牛客網暑期ACM多校訓練營(第三場)C Shuffle Cards(splay)ACM
- 自訓練 + 預訓練 = 更好的自然語言理解模型模型
- 19_03_26校內訓練[魔法卡片]
- 19_04_02校內訓練[圖染色]
- 19_03_28校內訓練[相似字串]字串
- 【學校訓練記錄】10月個人訓練賽3個人題解