USACO 2015 February Censoring (Gold)&&BZOJ3940 && 阿里2021秋招笔试T2自动删除机

BZOJ倒了,USACO上还可以补题,链接是:

http://www.usaco.org/index.php?page=viewproblem2&cpid=533

题意不赘诉了。

思路:

建ac自动机,用一个栈维护删除后得字符串(ans[top]),一个数组记录每个字符匹配到的树(自动机)上的点d[top],当在树上匹配到一个完整子串节点,就弹栈,删除对应长度得字符串,然后当前匹配节点也返回到对应字符的点上,注意d数组的下标也是top。

好久没写自动机了,有一个注意点是 自动机root节点的子节点匹配的时候不要让fail指针指向自己,需要特批,指向root。

代码:

/*ID: johsnows*/
#include 
#include 
#include 
#define ps push_back
using namespace std;
const int maxn=2e5+5;
int fail[maxn];
int node[maxn][27];
int val[maxn];
int que[maxn];
int cnt, root;
char s[maxn], sub[maxn];
char ans[maxn];
int top;
int d[maxn];
void insert(char s[])
{
    int now=root;
    for(int i=0; s[i]; i++)
    {
        int pos=s[i]-'a';
        if(node[now][pos])now=node[now][pos];
        else node[now][pos]=++cnt, now=node[now][pos];
    }
    val[now]=strlen(s);
}
void build()
{
    int head=0, tail=0;
    que[tail++]=root;
//    for(int i=0; i<26; i++)if(node[root][i])que[tail++]=node[root][i];
    while(head>s;
    int t;
    cin>>t;
    while(t--)
    {
        cin>>sub;
        insert(sub);
    }
    build();
    int now=root;
    for(int i=0; s[i]; i++)
    {
        d[++top]=now=node[now][s[i]-'a'];
        ans[top]=s[i];
        if(val[now])
        {
            top-=val[now];
            now=d[top];
        }
    }
    for(int i=1; i<=top; i++)printf("%c", ans[i]);
    return 0;
}
/***
sdqaaaq
2
qq
aaa
**/

 

你可能感兴趣的:(AC自动机,bzoj,秋招笔试,AC自动机)