P3121 [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 

Solution:

  Water!本题和前面那题思路完全一样,只不过变成了多模式串,只需将模式串建好AC自动机,每次用栈记录失配边所指向的节点,然后若匹配到了一个模式串就回到当前节点深度之前的栈中的节点,继续匹配就好了。

代码:

 1 #include<bits/stdc++.h>
 2 #define il inline
 3 #define ll long long
 4 #define For(i,a,b) for(int (i)=(a);(i)<=(b);(i)++)
 5 #define Bor(i,a,b) for(int (i)=(b);(i)>=(a);(i)--)
 6 using namespace std;
 7 const int N=1e5+7;
 8 int trie[N][26],cnt,fail[N],lst[N],ed[N],n,dep[N],stk[N],tot;
 9 char s[N],t[N],ans[N];
10 
11 il void insert(char *s){
12     int len=strlen(s),p=0,x;
13     For(i,0,len-1){
14         x=s[i]-'a';
15         if(!trie[p][x])trie[p][x]=++cnt,dep[cnt]=dep[p]+1;
16         p=trie[p][x];
17     }
18     ed[p]++;
19 }
20 
21 il void bfs(){
22     queue<int>q;
23     For(i,0,25) if(trie[0][i]) q.push(trie[0][i]),fail[trie[0][i]]=0;
24     while(!q.empty()){
25         int u=q.front();q.pop();
26         For(i,0,25){
27             int &v=trie[u][i];
28             if(v) fail[v]=trie[fail[u]][i],lst[v]=ed[fail[v]]?fail[v]:lst[fail[v]],q.push(v);
29             else v=trie[fail[u]][i];
30         }
31     }
32 }
33 
34 il void solve(char *s){
35     int len=strlen(s),p=0;
36     For(i,0,len-1){
37         ans[++tot]=s[i];
38         p=trie[p][s[i]-'a'];
39         for(int j=p;j;j=lst[j]) if(ed[j]){tot-=dep[j];p=stk[tot];break;}
40         stk[tot]=p;
41     }
42     For(i,1,tot) printf("%c",ans[i]);
43 }
44 
45 il void init(){
46     scanf("%s%d",t,&n);
47     For(i,1,n)scanf("%s",s),insert(s);
48     bfs();
49     solve(t);
50 }
51 
52 int main(){
53     init();
54     return 0;
55 }

猜你喜欢

转载自www.cnblogs.com/five20/p/9473449.html