hdu 6138

/* ac自动机*/
#include
using namespace std;
#define ms(x) memset(x,0,sizeof(x))
const int M =1e5+10;
namespace AC
{
    int ch[M][26],de[M],f[M],vis[M],cnt=0,q[M*2];
    inline void Init()
    {
        ms(vis);ms(f);ms(de);cnt=0;f[0]=-1;ms(ch);
    }
    void Insert(char *s)
    {
        int r=0;
        for(int i=0;s[i];++ i)
        {
            if(!ch[r][s[i]-'a'])
            {
                ++cnt;
                ms(ch[cnt]);
                ch[r][s[i]-'a'] = cnt;
                de[cnt]=i+1;
            }
            r = ch[r][s[i]-'a'];
        }
    }
    void Getfail()
    {
        int t=0,x;
        for(int i=0;i<26;i++) if(ch[0][i]) q[++t]=ch[0][i];
        for(x=1;x<=t;x++)
        {
           int xx=x;
           x =q[xx];
           for(int i=0;i<26;++ i)
             if(ch[x][i]) f[ch[x][i]]=ch[f[x]][i],q[++t]=ch[x][i];
             else ch[x][i] =ch[f[x]][i];
           x =xx;
        }
    }
    int Ans(char *s1,char *s2,int vi)
    {
       int ans=0;
       for(int l=strlen(s1),i=0,x=0;i

你可能感兴趣的:(AC自动机)