java字典树 dp_CodeForces - 633C - Spy Syndrome 2(字典树+dp)

C. Spy Syndrome 2

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

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:

Convert all letters of the sentence to lowercase.

Reverse each of the words of the sentence individually.

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 nlowercase 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

Copy

30

ariksihsidlihcdnaehsetahgnisol

10

Kira

hates

is

he

losing

death

childish

L

and

Note

output

Copy

Kira is childish and he hates losing

input

Copy

12

iherehtolleh

5

HI

Ho

there

HeLLo

hello

output

Copy

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.

题意:

给你一个加密后的字符串,再给你若干个单词。

加密规则:

1、把这句话中的所有字母变成小写字母

2、把这句话中的所有单词反过来

3、把这句话中的所有空格去掉

现在给你加密后的字符串和字典,问你加密前的句子是什么,输出任意一组合法答案。

思路:刚开始以为是个简单的字典树,可是怎么调都不对。后来一想,要想合法答案存在,必定是从最后一个单词确定开始,依次找前面的单词的。因此用一个dp数组表示下标i之前的串是哪个单词(i一定是单词的结束位置)。在字典树中dp完以后再从n开始倒着往前找单词即可。

注意细节。

代码:

#include

#define ll long long

#define inf 0x3f3f3f3f

#define p pair

using namespace std;

const int maxn=200010;

const ll mo=998244353;

int n,m,k;

int d[maxn],len[maxn];

int tmp,ans;

string str[maxn];

char s[1010],ss[maxn];

struct Trie

{

int ch[1000010][26],sz;

int val[1000010];//注意数组大小

void init()

{

memset(ch[0],0,sizeof(ch[0]));

sz=0;

val[sz]=0;

}

void add(char *s,int idd)

{

int u=0,id;

//printf("%s\n",s);

for(int i=len[idd]-1;i>=0;i--)

{

if(s[i]<='Z') id=s[i]-'A';

else id=s[i]-'a';

if(!ch[u][id])

{

ch[u][id]=++sz;

val[sz]=0;

memset(ch[sz],0,sizeof(ch[sz]));

}

u=ch[u][id];

}

val[u]=idd;

//if(s[0]=='h'&&s[1]=='e') cout<

}

void find(char *s,int id)

{

int u=0;

for(int i=id;i

{

u=ch[u][s[i]-'a'];

if(!u) return;

if(val[u]&&!d[i+1])

{

d[i+1]=val[u];

}

}

}

}T;

int main()

{

T.init();

scanf("%d",&n);

scanf("%s",ss);

scanf("%d",&m);

for(int i=1;i<=m;i++)

{

scanf("%s",s);

str[i]=(string)s;

len[i]=strlen(s);

T.add(s,i);

}

d[0]=1;

for(int i=0;i

{

if(!d[i]) continue;

T.find(ss,i);

}

vectorans;

int u=n;

while(u)

{

ans.push_back(d[u]);

//cout<

u-=len[d[u]];

//cout<

}

for(int i=ans.size()-1;i>=0;i--)

{

printf("%s%c",str[ans[i]].c_str(),i==0?'\n':' ');

}

return 0;

}

本文分享 CSDN - LSD20164388。

如有侵权,请联系 support@oschina.cn 删除。

本文参与“OSC源创计划”,欢迎正在阅读的你也加入,一起分享。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
引用\[1\]中提到了一种形动态规划的方法来解决CodeForces - 982C问题。在这个问题中,subtree指的是子连通块,而不是子。为了使cnt_white - cnt_black尽可能大,可以使用两次形动态规划来求解。第一次是自底向上的过程,维护一个dp数组,表示以每个节点为根的子中的最大连通块。第二次是自顶向下的过程,处理自底向上过程中无法包含的链所代表的子。在第二次遍历中,需要维护一个sum变量,用于存储链所代表的子的贡献。根据ans\[u\]的正负,决定是否能对相邻的子节点做出贡献。如果ans\[u\]为正,则减去dp\[v\]就是链所代表的子的权值。最终,ans\[u\]代表包含节点u在内的子连通块的最大权值。\[1\] 问题: CodeForces - 982C DP是什么问题?如何解决? 回答: CodeForces - 982C是一个形动态规划问题。在这个问题中,需要求解子连通块的最大权值和,使得cnt_white - cnt_black尽可能大。解决这个问题的方法是使用两次形动态规划。第一次是自底向上的过程,维护一个dp数组,表示以每个节点为根的子中的最大连通块。第二次是自顶向下的过程,处理自底向上过程中无法包含的链所代表的子。在第二次遍历中,需要维护一个sum变量,用于存储链所代表的子的贡献。根据ans\[u\]的正负,决定是否能对相邻的子节点做出贡献。最终,ans\[u\]代表包含节点u在内的子连通块的最大权值。\[1\] #### 引用[.reference_title] - *1* *2* [CodeForces - 1324F Maximum White Subtree(dp)](https://blog.csdn.net/qq_45458915/article/details/104831678)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^koosearch_v1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值