hdu 3065 史上最裸 AC 自动机 第三弹

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<cstdlib>
#include<queue>
#include<set>
using namespace std;
const int maxn=1502;
const int maxm=2000102;
char s[maxm],str[maxn][52];
int n,t,ans,res,vis[maxn];
struct node
{
    int cnt;
    int idx,flag;
    node *next[27],*fail;
    node()
    {
        memset(next,0,sizeof(next));
        fail=NULL;
        idx=cnt=flag=0;
    }
};
void Insert(node *rt,char s[],int idx)
{
    int i=0;
    node *p=rt;
    while(s[i])
    {
        int k=s[i++]-'A';
        if(p->next[k]==NULL) p->next[k]=new node();
        p=p->next[k];
    }
    p->idx=idx;
    p->cnt++;
    p->flag=1;
}
void build_AC(node *rt)
{
    int i,j;
    queue<node*>q;
    rt->fail=NULL;
    q.push(rt);
    while(!q.empty())
    {
        node *p=q.front();
        q.pop();
        for(i=0; i<26; i++)
        {
            if(p->next[i]!=NULL)//寻找当前子树的失败指针
            {
                if(p==rt)
                {
                     p->next[i]->fail=rt;
                }else
                {
                    node *tmp=p->fail;
                    while(tmp!=NULL)
                    {
                        if(tmp->next[i]!=NULL)//找到失败指针
                        {
                            p->next[i]->fail=tmp->next[i];
                            break;
                        }
                        tmp=tmp->fail;
                    }
                    if(tmp==NULL) p->next[i]->fail=rt;//无法获取,当前子树的失败指针为根
                }
                q.push(p->next[i]);
            }
        }
    }
}
void query_AC(node *rt,char s[])
{
    node *p=rt;
    int i=0;
    while(s[i])
    {
        int k=s[i++]-'A';
        if(k<0||k>25)
        {
             p=rt;
             continue;
        }
        while(p->next[k]==NULL&&p!=rt)p=p->fail;//失配
        p=p->next[k];
        if(p==NULL)p=rt;//失配指针为根
        node *tmp=p;
        while(tmp!=rt)
        {
            //cout<<"OK "<<i<<" "<<p->cnt<<endl;
            if(tmp->flag==1)
            vis[tmp->idx]+=tmp->cnt;
            tmp=tmp->fail;
        }
    }
    return;
}
int main()
{
    while(scanf("%d",&n)!=EOF)
    {

        int i,j;
        node *rt=new node();
        for(i=1; i<=n; i++)
        {
            scanf("%s",&str[i]);
            Insert(rt,str[i],i);
        }
        memset(vis,0,sizeof(vis));
        build_AC(rt);
        scanf("%s",s);
        query_AC(rt,s);
        for(i=1;i<=n;i++)
        {
            if(vis[i])
            {
                cout<<str[i]<<": "<<vis[i]<<endl;
            }
        }
    }
    return 0;
}


你可能感兴趣的:(hdu 3065 史上最裸 AC 自动机 第三弹)