BZOJ 3940 [Usaco2015 Feb]Censoring

Description
Farmer John has purchased a subscription to Good Hooveskeeping magazine for his cows, so they have plenty of material to read while waiting around in the barn during milking sessions. Unfortunately, the latest issue contains a rather inappropriate article on how to cook the perfect steak, which FJ would rather his cows not see (clearly, the magazine is in need of better editorial oversight).
FJ has taken all of the text from the magazine to create the string S of length at most 10^5 characters.
He has a list of censored words t_1 … t_N that he wishes to delete from S. To do so Farmer John finds the earliest occurrence of a censored word in S (having the earliest start index) and removes that instance of the word from S. He then repeats the process again, deleting the earliest occurrence of a censored word from S, repeating until there are no more occurrences of censored words in S. Note that the deletion of one censored word might create a new occurrence of a censored word that didn’t exist before.
Farmer John notes that the censored words have the property that no censored word appears as a substring of another censored word. In particular this means the censored word with earliest index in S is uniquely defined.Please help FJ determine the final contents of S after censoring is complete.
FJ把杂志上所有的文章摘抄了下来并把它变成了一个长度不超过10^5的字符串S。他有一个包含n个单词的列表,列表里的n个单词记为t_1…t_N。他希望从S中删除这些单词。
FJ每次在S中找到最早出现的列表中的单词(最早出现指该单词的开始位置最小),然后从S中删除这个单词。他重复这个操作直到S中没有列表里的单词为止。注意删除一个单词后可能会导致S中出现另一个列表中的单词 FJ注意到列表中的单词不会出现一个单词是另一个单词子串的情况,这意味着每个列表中的单词在S中出现的开始位置是互不相同的 请帮助FJ完成这些操作并输出最后的S


【题目分析】
AC自动机。多用于处理多模版的情况,这道题其实就加入了一个栈来维护删除的操作。


【代码】

#include <queue>
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>

using namespace std;

#define maxn 100005
#define maxm 30

int read()
{
    int x=0,f=1; char ch=getchar();
    while (ch<'0'||ch>'9') { if (ch=='-') f=-1; ch=getchar(); }
    while (ch>='0'&&ch<='9') { x=x*10+ch-'0'; ch=getchar(); }
    return x*f;
}

int trie[maxn][maxm],fail[maxn],vis[maxn],w[maxn];
int n,cnt=1;
char s[maxn],ss[maxn];
int f[maxn],sta[maxn],top=0;

void ins()
{
    scanf("%s",ss+1);
    int now=1,len=strlen(ss+1);
    for (int i=1;i<=len;++i)
    {
        if (!trie[now][ss[i]-'a']) trie[now][ss[i]-'a']=++cnt;
        now=trie[now][ss[i]-'a'];
    }
    w[now]=len;
}

void getfail()
{
    queue <int> q;
    while (!q.empty()) q.pop();
    q.push(1);
    while (!q.empty())
    {
        int j,x=q.front(); q.pop();
        for (int i=0;i<26;++i)
        {
            j=fail[x];
            while (j&&!trie[j][i]) j=fail[j];
            if (trie[x][i])
            {
                fail[trie[x][i]]=j?trie[j][i]:1;
                q.push(trie[x][i]);
            }
            else trie[x][i]=j?trie[j][i]:1;
        }
    }
}

void solve()
{
    int len=strlen(s+1);
    sta[++top]=0; f[top]=1;
    for (int i=1;i<=len;++i)
    {
        f[top+1]=trie[f[top]][s[i]-'a'];
        top++;
        sta[top]=s[i];
        while (w[f[top]]) top-=w[f[top]];
//      for (int i=1;i<=top;++i) printf("%d ",sta[i]); printf("\n");
    }
    for (int i=2;i<=top;++i) printf("%c",sta[i]);
}

int main()
{
    scanf("%s",s+1);
    n=read();
    for (int i=1;i<=n;++i) ins();
    getfail();
    solve();
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值