ac自动机

hdu 2222
题意:给定n个长度不超过50的有小写字母组成的单词 以及一篇长为m的文章,问有多少个单词在文章中出现了,多组数据

#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
const int N=1e5+10;
int ans,cnt,nxt[N],ch[N][30],bo[N],que[N];
void make(char *s)
{
	int u=1,len=strlen(s);
	for(int i=0;i<len;++i)
	{
		int c=s[i]-'a';
		if(!ch[u][c])
		{
			ch[u][c]=++cnt;
			memset(ch[cnt],0,sizeof ch[cnt]);
		}
		u=ch[u][c];
	}
	bo[u]++;
	return;
}
void bfs()
{
	for(int i=0;i<26;++i)
	ch[0][i]=1;
	que[1]=1,nxt[1]=0;
	for(int q1=1,q2=1;q1<=q2;++q1)
	{
		int u=que[q1];
		for(int i=0;i<26;++i)
		{
			if(!ch[u][i])
			ch[u][i]=ch[nxt[u]][i];
			else
			{
				que[++q2]=ch[u][i];
				int v=nxt[u];
				nxt[ch[u][i]]=ch[v][i];
			}
		}
		
	 } 
}
void find(char *s)
{
	int u=1,len=strlen(s),c,k;
	for(int i=0;i<=len;++i)
	{
		c=s[i]-'a';
		k=ch[u][c];
		while(k>1)
		{
			ans+=bo[k];
			bo[k]=0;
			k=nxt[k];
		}
		u=ch[u][c];
	}
	return;
}
int main()
{
	int t,n;
	char s[N<<1];
	scanf("%d",&t);
	while(t--)
	{
		ans=0,cnt=1;
		memset(bo,0,sizeof bo);
		for(int i=0;i<26;++i)
		ch[0][i]=1,ch[1][i]=0;
		scanf("%d",&n);
		for(int i=1;i<=n;++i)
		{
			scanf("%s",s);
			make(s);
		}
		bfs();
		scanf("%s",s);
		find(s);
		printf("%d\n",ans);
	 } 
	return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值