zoukankan      html  css  js  c++  java
  • BZOJ 3940 Censoring

    把上题的KMP改成AC自动机。

    注意root必须是0。因为root其实是NULL的意思。

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    #include<queue>
    #define maxn 500050
    using namespace std;
    char t[maxn],s[maxn];
    int cases,l,son[maxn][30],fail[maxn],fath[maxn],root,tot=0,pre[maxn],ts[maxn],len[maxn];
    queue <int> q;
    bool flag[maxn];
    void insert()
    {
        int now=root;
        for (int i=0;i<l;i++)
        {
            int nb=s[i]-'a'+1;
            if (!son[now][nb]) son[now][nb]=++tot;
            now=son[now][nb];
            if (i==l-1) len[now]=l;
        }
    }
    void build_AC()
    {
        q.push(root);
        while (!q.empty())
        {
            int head=q.front();q.pop();
            for (int i=1;i<=26;i++)
            {
                if (son[head][i])
                {
                    if (head!=root)fail[son[head][i]]=son[fail[head]][i];
                    else fail[son[head][i]]=root;
                    q.push(son[head][i]);
                }
                else son[head][i]=son[fail[head]][i];
            }
        }
    }
    void match_AC()
    {
        int now=root;ts[0]=1;
        for (int i=1;i<=l;i++)
        {
            int nb=t[i-1]-'a'+1;
            while (now!=root && !son[now][nb]) now=fail[now];
            if (son[now][nb]) now=son[now][nb];
            ts[i]=now;
            if (len[now])
            {
                int p=i;
                for (int j=1;j<=len[now];j++)
                {
                    flag[p-1]=true;
                    p=pre[p];
                }
                pre[i+1]=p;now=ts[p];
            }
        }
    }
    int main()
    {
        scanf("%s",t);
        scanf("%d",&cases);root=tot=0;
        for (int i=1;i<=cases;i++)
        {
            scanf("%s",s);
            l=strlen(s);insert();
        }
        build_AC();
        l=strlen(t);for (int i=1;i<=l;i++) pre[i]=i-1;
        match_AC();
        for (int i=0;i<l;i++)
            if (!flag[i]) printf("%c",t[i]);
        printf("
    ");
        return 0;
    } 
  • 相关阅读:
    策略梯度(Policy Gradient)
    无约束优化问题
    有约束优化问题
    计算机网络学习资料
    为什么要用等效基带信号?
    通信网实验—话务量分析
    无感数据埋点(自定义注解+aop+异步)
    排序算法
    位运算常见操作
    数据库与缓存一致性的几种实现方式
  • 原文地址:https://www.cnblogs.com/ziliuziliu/p/6358047.html
Copyright © 2011-2022 走看看