AC自动机模板 hdu2222

题目链接

#include<stdio.h>
#include<iostream>
#include<algorithm>
#include<math.h>
#include<new>
#include<queue>
#include<string.h>
using namespace std;
const int sz=250000;
struct node
{
   node *fail;
   node *Next[26];
   int  cnt;
};
node *root;
queue<node *>q;
int ans;
void update(char *s)
{
    int len=strlen(s);
    node *now;
    now=root;
    int i,go,j;
    for(i=0;i<len;i++)
    {
        go=s[i]-'a';
        if(now->Next[go]==NULL)
            {
                now->Next[go]=new node();
                for(j=0;j<26;j++)
                    now->Next[go]->Next[j]=NULL;
                now->Next[go]->fail=NULL;
                now->Next[go]->cnt=0;
            }
        now=now->Next[go];
    }
    now->cnt++;
}
void make_fail()
{
    root->fail=NULL;
    node *now,*p;
    q.push(root);
    while(!q.empty())
    {
        now=q.front();
        q.pop();
        for(int i=0;i<26;i++)
        {
            if(now->Next[i]!=NULL)
            {
              if(now==root)
                    now->Next[i]->fail=root;
              else
              {
                  p=now->fail;
                  while(p!=NULL)
                  {
                      if(p->Next[i]!=NULL)
                        {
                            now->Next[i]->fail=p->Next[i];
                            break;
                        }
                        p=p->fail;
                  }
                  if(p==NULL)
                    now->Next[i]->fail=root;
              }
              q.push(now->Next[i]);
            }
        }

    }
}
void query(char s[])
{
    int len=strlen(s);
    int i,go;
    node *now,*p;
    now=root;
    for(i=0;i<len;i++)
    {
        go=s[i]-'a';
        while(now!=root&&now->Next[go]==NULL)now=now->fail;
        now=now->Next[go];
        if(now==NULL)
            now=root;
        p=now;
        while(p!=root&&p->cnt!=-1)
        {
            ans+=p->cnt;
            p->cnt=-1;
            p=p->fail;
        }
    }
}
void init()
{
    root=new node();
    for(int i=0;i<26;i++)
        root->Next[i]=NULL;
    root->fail=NULL;
    root->cnt=0;
    ans=0;
}
char s[1000007];
int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        init();
        int n,i;

        scanf("%d",&n);
        for(i=0;i<n;i++)
        {
            scanf("%s",s);
            update(s);
        }
        make_fail();
        scanf("%s",s);
        query(s);
        printf("%d\n",ans);
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值