3940: [Usaco2015 Feb]Censoring

Time Limit: 10 Sec  Memory Limit: 128 MB

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

Input

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.
第一行包含一个字符串S 
第二行包含一个整数N 
接下来的N行,每行包含一个字符串,第i行的字符串是t_i

Output

The string S after all deletions are complete. It is guaranteed that S will not become empty during the deletion process.
一行,输出操作后的S
 
 

Sample Input

begintheescapexecutionatthebreakofdawn
2
escape
execution

Sample Output

beginthatthebreakofdawn

HINT

 

Source

Gold

#include<map>
#include<cmath>
#include<queue>
#include<cstdio>
#include<string>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
#define ll long long
#define N 100010
char s[N],s1[N],ans[N];
int fail[N],ch[N][],dep[N];
int n,rt=,tot=,q[N],w[N];
void build()
{
int h=,t=,x;
fail[rt]=rt;
for(int i=;i<;i++)
if(ch[rt][i]==-) ch[rt][i]=rt;
else
{
fail[ch[rt][i]]=rt;
q[++t]=ch[rt][i];
}
while(h<t)
{
x=q[++h];
for(int i=;i<;i++)
if(ch[x][i]==-) ch[x][i]=ch[fail[x]][i];
else
{
fail[ch[x][i]]=ch[fail[x]][i];
q[++t]=ch[x][i];
}
}
}
int main()
{
scanf("%s",s+);
memset(ch,-,sizeof(ch));
scanf("%d",&n);
int len,x,t;
for(int i=;i<=n;i++)
{
scanf("%s",s1+);
len=strlen(s1+);x=rt;
for(int i=;i<=len;i++)
{
t=s1[i]-'a';
if(ch[x][t]==-) ch[x][t]=++tot;
x=ch[x][t];
}
dep[x]=len;
}
build();
x=rt;len=strlen(s+);tot=;w[]=rt;
for(int i=;i<=len;i++)
{
ans[++tot]=s[i];
x=ch[x][s[i]-'a'];w[tot]=x;
if(dep[x]){tot-=dep[x];x=w[tot];}
}
for(int i=;i<=tot;i++) printf("%c",ans[i]);puts("");
return ;
}

最新文章

  1. Android中后台的劳动者“服务”
  2. 关于Web开发里并发、同步、异步以及事件驱动编程的相关技术
  3. ASP.NET MVC必知必会知识点总结(一)
  4. 《oracle每日一练》oracle截取字符的函数
  5. linq查询结果datetime类型转string类型
  6. 通过继承Rect类编写一个具有确定位置的矩形类PlainRect,其确定位置用 矩形的左上角坐标来标识,包含: 添加两个属性:矩形左上角坐标startX和startY。 两个构造方法: 带4个参数的构造方法,用于对startX、startY、width和height属性 初始化; 不带参数的构造方法,将矩形初始化为左上角坐标、长和宽都为0 的矩形; 添加一个方法: 判断某个点是否在矩形内部的方法
  7. NOJ1018-深度遍历二叉树
  8. blocked because of many connection errors; unblock with 'mysqladmin flush-hosts;MySQL在远程访问时非常慢的解决方法;MySql链接慢的解决方法
  9. MySQL 主从架构配置详解
  10. STL set multiset map multimap unordered_set unordered_map example
  11. 演示:纯CSS实现自适应布局表格
  12. MyGeneration 默认设置中没有数据库驱动
  13. 求高精度幂(java)
  14. 设计模式(2)--Singleton--单例模式--创建型
  15. 微信小程序初探【类微信UI聊天简单实现】
  16. Django的ORM那些相关操作
  17. Linux记录-JMX监控JAVA进程
  18. for循环中进行联网请求数据、for循环中进行异步数据操作,数据排序错乱问题解决;
  19. python 游戏(数字推理游戏Bagels)
  20. Codeforces 912E - Prime Gift

热门文章

  1. 3、CSS基本介绍
  2. 爬虫--PyQuery
  3. 39、请用代码简答实现stack
  4. Verilog笔记.3.有限状态机
  5. 再续 virtualenv II
  6. android ViewPager之OnPageChangeListener接口
  7. iphone6设置企业qq
  8. 学习Python函数笔记之二(内置函数)
  9. BZOJ 1975: [Sdoi2010]魔法猪学院——K短路,A*
  10. 「caffe编译bug」 undefined reference to `boost::match_results&lt;__gnu_cxx::__normal_iterator&lt;char const*, std::__cxx11