CodeForces - 633C Spy Syndrome 2 字典树+dfs

After observing the results of Spy Syndrome, Yash realised the errors of his ways. He now believes that a super spy such as Siddhant can't use a cipher as basic and ancient as Caesar cipher. After many weeks of observation of Siddhant’s sentences, Yash determined a new cipher technique.

For a given sentence, the cipher is processed as:

  1. Convert all letters of the sentence to lowercase.
  2. Reverse each of the words of the sentence individually.
  3. Remove all the spaces in the sentence.

For example, when this cipher is applied to the sentence

Kira is childish and he hates losing

the resulting string is

ariksihsidlihcdnaehsetahgnisol

Now Yash is given some ciphered string and a list of words. Help him to find out any original sentence composed using only words from the list. Note, that any of the given words could be used in the sentence multiple times.

Input

The first line of the input contains a single integer n (1 ≤ n ≤ 10 000) — the length of the ciphered text. The second line consists of n lowercase English letters — the ciphered text t.

The third line contains a single integer m (1 ≤ m ≤ 100 000) — the number of words which will be considered while deciphering the text. Each of the next m lines contains a non-empty word wi (|wi| ≤ 1 000) consisting of uppercase and lowercase English letters only. It's guaranteed that the total length of all words doesn't exceed 1 000 000.

Output

Print one line — the original sentence. It is guaranteed that at least one solution exists. If there are multiple solutions, you may output any of those.

Examples

Input

30
ariksihsidlihcdnaehsetahgnisol
10
Kira
hates
is
he
losing
death
childish
L
and
Note

Output

Kira is childish and he hates losing 

Input

12
iherehtolleh
5
HI
Ho
there
HeLLo
hello

Output

HI there HeLLo 

Note

In sample case 2 there may be multiple accepted outputs, "HI there HeLLo" and "HI there hello" you may output any of them.

题解:

反向建树 正向dfs 查找即可

 

#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm> 
using namespace std;
struct node
{
	node *nex[26];
	int sum;
}*head;
int flag;
int n,m,ans[10010],cnt;
char b[100010][1100];
char tmp[10010];
void init()
{
	head=new node;
	for(int i=0;i<26;i++)
		head->nex[i]=NULL;
	head->sum=0;
}
void insert(char str[],int num)
{
	int id;
	int len=strlen(str);
	node *p=head;
	for(int i=len-1;i>=0;i--)
	{
		if(str[i]>='A'&&str[i]<='Z')
			id=str[i]-'A';
		else
			id=str[i]-'a';
		if(p->nex[id]==NULL)
		{
			p->nex[id]=new node;
			p=p->nex[id];
			p->sum=0; 
			for(int j=0;j<26;j++)
				p->nex[j]=NULL; 
		}
		else
		{
			p=p->nex[id];
		}
	}
	p->sum=num;
}
void dealnode(node *p)
{
	for(int i=0;i<26;i++)
		if(p->nex[i]!=NULL)
		{
			dealnode(p->nex[i]);
		}
	free(p);
}
void dfs(int pos)
{
	if(pos==n)
	{
		flag=1;
		return;
	} 
	node *p=head;
	for(int i=pos;i<n;i++)
	{
		int id=tmp[i]-'a';
		if(p->nex[id]==NULL) return;
		else if(p->nex[id]->sum)
		{
			ans[cnt++]=p->nex[id]->sum;
			dfs(i+1);
			if(flag) return;
			cnt--;
		}
		p=p->nex[id];
	}
}
int main()
{
	char str[10010];
	scanf("%d",&n);
	init();
	scanf("%s",tmp);
	scanf("%d",&m);
	for(int i=1;i<=m;i++)
	{
		scanf("%s",b[i]);
		insert(b[i],i);
	}
	cnt=0;
	dfs(0);
	for(int i=0;i<cnt;i++)printf("%s%c",b[ans[i]]," \n"[i==cnt-1]);
	dealnode(head);
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值