模板AC自动机

Posted winlere

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了模板AC自动机相关的知识,希望对你有一定的参考价值。

自适应AC自动机!

其实就是重载运算符。

感觉别人写的自动机下标之间太多累赘的东西,不如重载运算符。方便编写。

实际上AC自动机就是字典树加上(kmp)算法的精髓,可以对于一个文本串快速匹配多个模式串。时间复杂度(O(Sigma n+m))

#include<bits/stdc++.h>

#define RP(t,a,b) for(register int (t)=(a),edd_=(b);t<=edd_;++t)
#define DRP(t,a,b) for(register int (t)=(a),edd_=(b);t>=edd_;--t)
#define ERP(t,a) for(int t=head[a];t;t=e[t].nx)
#define Max(a,b) ((a)<(b)?(b):(a))
#define Min(a,b) ((a)<(b)?(a):(b))
#define pushup(x) seg[(x)]=seg[(x)<<1]+seg[(x)<<1|1]
#define midd register int mid=(l+r)>>1
#define chek if(R<l||r<L)return
#define TMP template<class ccf>
#define rgt L,R,mid,r,pos<<1|1
#define lef L,R,l,mid,pos<<1
#define all 1,n,1
using namespace std;typedef long long ll;

TMP inline ccf qr(ccf k){
    char c=getchar();
    ccf x=0;
    int q=1;
    while(c<48||c>57)q=c==45?-1:q,c=getchar();
    while(c>=48&&c<=57)x=x*10+c-48,c=getchar();
    return q==-1?-x:x;
}

const int maxn=1e6+5;
string str;
struct node{
    int son[27];
    int fail;
    int cnt;
    node(){fail=cnt=0,memset(son,0,sizeof son);}
    inline int& operator [](char x){
    return son[x-‘a‘+1];
    }
    inline int& operator [](int x){
    return son[x];
    }
    inline int operator ++(void){
    return this->cnt=this->cnt+1;
    }
}ac[maxn];
int act;
int n;

inline void build(int lit){
    int now=0;
    RP(t,0,lit-1){
    if(!ac[now][str[t]])
        ac[now][str[t]]=++act;
    now=ac[now][str[t]];
    }
    ++ac[now];
}

queue< int > q;
inline void gen(){
    RP(t,1,26)
    if(ac[0][t])
    q.push(ac[0][t]);
    while(q.size()){
    int now=q.front();
    q.pop();
    RP(t,1,26){
        if(ac[now][t]){
        ac[ac[now][t]].fail=ac[ac[now].fail][t];
        q.push(ac[now][t]);
        }
        else
        ac[now][t]=ac[ac[now].fail][t];
    }
    }
}


inline int match(int lit){
    int ret=0,pos=0;
    for(int k=0;k<lit;++k){
    pos=ac[pos][str[k]];
    for(int t=pos;t&&ac[t].cnt!=-1;t=ac[pos].fail)
        ret+=ac[t].cnt,ac[t].cnt=-1;
    }
    return ret;
}

int main(){
#ifndef ONLINE_JUDGE
    freopen("in.in","r",stdin);
    freopen("out.out","w",stdout);
#endif
    n=qr(1);
    while(n--)cin>>str,build(str.length());
    gen();
    cin>>str;
    cout<<match(str.length())<<endl;
    return 0;
}
 

以上是关于模板AC自动机的主要内容,如果未能解决你的问题,请参考以下文章

HDU3247 Resource Archiver(AC自动机+BFS+DP)

模板AC自动机

HDU-2222-Keywords Search(AC自动机模板)

POJ3691DNA repair(AC自动机,DP)

HDU4057 Rescue the Rabbit(AC自动机+状压DP)

P3796 模板AC自动机(加强版) 题解(Aho-Corasick Automation)