比赛 20150420 评测结果 AAAWTATAAAAWTTA
题目名称 审查 最终得分 60
用户昵称 ggwdwsbs 运行时间 6.918 s
代码语言 C++ 内存使用 0.35 MiB
提交时间 2015-04-20 11:40:54
显示代码纯文本
#include<stdio.h>
#include<string>
#include<iostream>
using namespace std;
const int maxn=10001;
string ch[maxn];
string s;
int n;
int work()
{
	for(int i=1;i<=n;i++)
	 if(s.find(ch[i],0)!=string::npos)
	 {
		s.erase(s.find(ch[i],0),ch[i].length());
		work();
	 }
}
int main()
{
	freopen("censor.in","r",stdin);
	freopen("censor.out","w",stdout);
	cin>>s;
	scanf("%d",&n);
	for(int i=1;i<=n;i++)
	{
		cin>>ch[i];
	}
	work();
	cout<<s;
}