[USACO15FEB]审查(黄金)Censoring (Gold)

题目描述

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

输入格式

The first line will contain S.

The second line will contain N, the number of censored words. The next N lines contain the strings t_1 ... t_N. Each string will contain lower-case alphabet characters (in the range a..z), and the combined lengths of all these strings will be at most 10^5.

输出格式

The string S after all deletions are complete. It is guaranteed that S will not become empty during the deletion process.

输入输出样例

输入 #1
begintheescapexecutionatthebreakofdawn 
2 
escape 
execution 
输出 #1
beginthatthebreakofdawn 


抱着写完这篇挂掉的心态熬完了,开两个栈,一个记录当前节点扫到AC自动机的哪个地方了,一个记录当然栈内合法的字符,每当发现一个能删去的字符串的时候,只需要把两个栈都减去字符串长度即可,把now修改一下,继续往后扫即可,最后输出第二个栈即可。


我觉得我要不行了······

(这题真恶心,第7个点不打换行过不掉,很玄学)

#include<cstdio>
#include<iostream>
#include<queue>
using namespace std;

const int maxn=1000005;

string s[maxn],t;

bool b[maxn];

int ch[maxn][27],l[maxn],t1=0,f[maxn],next[maxn],sz=1;

char ans[maxn];

void hhh(string s){
    int len=s.size(),u=1;
    for(int i=0;i<len;++i){
        int to=s[i]-'a'+1;
        if(!ch[u][to])ch[u][to]=++sz;
        u=ch[u][to];
    }
    b[u]=1;l[u]=len;
}

queue<int>Q;

void bfs(){
    Q.push(1);
    while(!Q.empty()){
        int u=Q.front();Q.pop();
        for(int i=1;i<=26;++i){
            if(!ch[u][i])ch[u][i]=ch[next[u]][i];
            else{
                next[ch[u][i]]=ch[next[u]][i];
                Q.push(ch[u][i]);
            }
        }
    }
}
int main(){
    scanf("%s",&t);
    int n;
    scanf("%d",&n);
    for(int i=1;i<=26;++i)ch[0][i]=1;
    for(int i=1;i<=n;++i){
        cin>>s[i];
        hhh(s[i]);
    }
    bfs();
    int len=t.size(),u=1;
    for(int i=0;i<len;++i){
        ans[++t1]=t[i];
        int to=t[i]-'a'+1;
        u=ch[u][to];
        if(b[u]){
            t1-=l[u];
            u=f[t1];
        }
        else {
            f[t1]=u;
        }
    }
    ans[t1+1]='';
    printf("%d
",ans+1);
    return 0;
}
原文地址:https://www.cnblogs.com/hrj1/p/11135594.html