hdu 4300 Clairewd’s message(扩展kmp)

时间:2022-08-30 09:15:29
Problem Description
Clairewd is a member of FBI. After several years concealing in BUPT, she intercepted some important messages and she was preparing for sending it to ykwd. They had agreed that each letter of these messages would be transfered to another one according to a conversion table.
Unfortunately, GFW(someone's name, not what you just think about) has detected their action. He also got their conversion table by some unknown methods before. Clairewd was so clever and vigilant that when she realized that somebody was monitoring their action, she just stopped transmitting messages.
But GFW knows that Clairewd would always firstly send the ciphertext and then plaintext(Note that they won't overlap each other). But he doesn't know how to separate the text because he has no idea about the whole message. However, he thinks that recovering the shortest possible text is not a hard task for you.
Now GFW will give you the intercepted text and the conversion table. You should help him work out this problem.
 
Input
The first line contains only one integer T, which is the number of test cases.
Each test case contains two lines. The first line of each test case is the conversion table S. S[i] is the ith latin letter's cryptographic letter. The second line is the intercepted text which has n letters that you should recover. It is possible that the text is complete.
Hint

Range of test data:
T<= 100 ;
n<= 100000;

 
Output
For each test case, output one line contains the shorest possible complete text.
 
Sample Input
2
abcdefghijklmnopqrstuvwxyz
abcdab
qwertyuiopasdfghjklzxcvbnm
qwertabcde
 
Sample Output
abcdabcd
qwertabcde
 
题意:这个字符串的前一半是密文,后一半是明文(密文和明文表示同一个信息),密文给的是完整的,明文给的是完整或者残缺的。题目给了你两行字符串,第一行是一个解码对照表,也就是当前的字母对应26个字母里面的哪一个字母,第二行是他截取的字符串,如果给的字符串是完整的,那么你就把它输出,如果给的字符串不完整,那么就把字符串剩下的明文补全后再输出~~
 
思路:因为给的字符串是密文+明文的形式,那么我们用密码对照表把这个字符串翻译一下,那么这个字符串就会变成明文+乱码的形式,那么现在我们将第一个字符串的后缀和第二个字符串的前缀进行匹配,我们找到前缀和后缀的最大匹配长度,我们就知道了这个字符串的密文和明文的分割点。知道分割点后把剩下的明文补全就好了。因为是后缀匹配前缀,那么这就是一个扩展KMP的问题,因为密文长度一定大于等于明文,所以我们再判断一下分割点的位置是不是在字符串的二分之一之后。
 
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iostream>
#include<string>
#include<vector>
#include<stack>
#include<bitset>
#include<cstdlib>
#include<cmath>
#include<set>
#include<list>
#include<deque>
#include<map>
#include<queue>
#define ll long long int
using namespace std;
inline ll gcd(ll a,ll b){return b?gcd(b,a%b):a;}
inline ll lcm(ll a,ll b){return a/gcd(a,b)*b;}
int moth[]={,,,,,,,,,,,,};
int dir[][]={, ,, ,-, ,,-};
int dirs[][]={, ,, ,-, ,,-, -,- ,-, ,,- ,,};
const int inf=0x3f3f3f3f;
const ll mod=1e9+;
int nextt[+];
int ex[+];
void getnext(string s){
int len=s.length(); int po;
nextt[]=len;
int pos=;
while(s[pos+]==s[pos]&&pos<len-) pos++;
nextt[]=pos;
po=;
for(int i=;i<len;i++){
if(nextt[i-po]+i<nextt[po]+po)
nextt[i]=nextt[i-po];
else{
int j=po+nextt[po]-i;
if(j<) j=;
while(i+j<len&&s[j]==s[i+j]) j++;
nextt[i]=j;
}
}
}
void getex(string t,string p){
int len1=p.length(); int len2=t.length();
int po;
getnext(t);
int pos=;
while(t[pos]==p[pos]&&pos<len1&&pos<len2) pos++;
ex[]=pos;
po=;
for(int i=;i<len1;i++){
if(nextt[i-po]+i<po+ex[po])
ex[i]=nextt[i-po];
else{
int j=po+ex[po]-i;
if(j<) j=;
while(i+j<len1&&j<len2&&t[j]==p[i+j]) j++;
ex[i]=j;
}
}
}
int main(){
ios::sync_with_stdio(false);
int t;
cin>>t;
while(t--){
string tab;
map<char,char> mm;
string tx;
cin>>tab>>tx;
string ctx="";
for(int i=;i<tab.length();i++){
mm[tab[i]]=i+'a'; //解码
}
int len=tx.length();
for(int i=;i<len;i++)
ctx+=mm[tx[i]];
getex(ctx,tx);
string ans="";
int k;
for(k=(len+)/;k<len;k++)
if(k+ex[k]==len) //k+ex值如果等于len 说明这个就是后缀
break;
for(int i=;i<k;i++)
ans+=tx[i];
for(int i=;i<k;i++)
ans+=mm[tx[i]];
cout<<ans<<endl;
}
return ;
}

hdu 4300 Clairewd’s message(扩展kmp)的更多相关文章

  1. hdu 4300 Clairewd’s message(kmp&sol;扩展kmp)

    题意:真难懂.. 给出26个英文字母的加密表,明文中的'a'会转为加密表中的第一个字母,'b'转为第二个,...依次类推. 然后第二行是一个字符串(str1),形式是密文+明文,其中密文一定完整,而明 ...

  2. HDU 4300 Clairewd&&num;39&semi;s message &lpar; 拓展KMP &rpar;

    题意 : 给你一个包含26个小写字母的明文密文转换信息字符串str,第一个表示'a'对应的密文是str[0].'b'对应str[1]……以此类推.接下来一行给你一个另一个字符串,这个字符串由密文+明文 ...

  3. hdu 4300 Clairewd’s message KMP应用

    Clairewd’s message 题意:先一个转换表S,表示第i个拉丁字母转换为s[i],即a -> s[1];(a为明文,s[i]为密文).之后给你一串长度为n<= 100000的前 ...

  4. HDU - 4300 Clairewd’s message (拓展kmp)

    HDU - 4300 题意:这个题目好难读懂,,先给你一个字母的转换表,然后给你一个字符串密文+明文,密文一定是全的,但明文不一定是全的,求最短的密文和解密后的明文: 题解:由于密文一定是全的,所以他 ...

  5. hdu4300 Clairewd’s message 扩展KMP

    Clairewd is a member of FBI. After several years concealing in BUPT, she intercepted some important ...

  6. hdu 4300 Clairewd’s message 字符串哈希

    Clairewd’s message Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Other ...

  7. hdu 4300 Clairewd’s message(具体解释,扩展KMP)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4300 Problem Description Clairewd is a member of FBI. ...

  8. HDU 4300 Clairewd’s message(扩展KMP)

    思路:extend[i]表示原串以第i開始与模式串的前缀的最长匹配.经过O(n)的枚举,我们能够得到,若extend[i]+i=len且i>=extend[i]时,表示t即为该点之前的串,c即为 ...

  9. HDU 4300 Clairewd’s message(扩展KMP)题解

    题意:先给你一个密码本,再给你一串字符串,字符串前面是密文,后面是明文(明文可能不完成整),也就是说这个字符串由一个完整的密文和可能不完整的该密文的明文组成,要你找出最短的密文+明文. 思路:我们把字 ...

随机推荐

  1. Android数据存储-文件操作

    一.预备知识 1.Android中的MVC设计模式 MVC (Model-View-Controller):M是指逻辑模型,V是指视图模型,C则是控制器.一个逻辑模型可以对于多种视图模型,比如一批统计 ...

  2. 目标检測的图像特征提取之(一)HOG特征

    1.HOG特征: 方向梯度直方图(Histogram of Oriented Gradient, HOG)特征是一种在计算机视觉和图像处理中用来进行物体检測的特征描写叙述子.它通过计算和统计图像局部区 ...

  3. x264命令参数与代码中变量的对应关系

    帧类型选项:  -I/--keyint i_keyint_max 最大IDR帧间距,默认为250  -i/--min-keyint i_keyint_min 最小IDR帧间距,默认为25  --sce ...

  4. PHP获取IP所在地区&lpar;转&rpar;

    1.获取IP地址的API新浪的IP地址查询接口:http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js新浪多地域测试方法:http:/ ...

  5. zend studio 安装emmet&lpar;zen coding&rpar;

    help->Install New Software 在work with后面点击Add,弹出的对话框中填写信息: Name:随意 Location:http://emmet.io/eclips ...

  6. &lbrack;LSGDOJ1822&rsqb;书架 Splay

    题目描述 Sally有一个很大的书柜.这个书柜的构造有些独特,即书柜里的书是从上至下堆放成一列.她用1到n的正整数给每本书都编了号. Sally在看书的时候,每次取出一本书,看完后放回书柜然后再拿下一 ...

  7. springboot~ EventListener事件监听的使用

    EventListener事件触发和监听器可以对代码解耦,在一些与业务无关的,通用的操作方法,我们可以把它设计成事件监听器,像通知,消息这些模块都可以这样设计. 事件源 @Getter @Builde ...

  8. Cs231n课堂内容记录-Lecture 6 神经网络训练

    Lecture 6  Training Neural Networks 课堂笔记参见:https://zhuanlan.zhihu.com/p/22038289?refer=intelligentun ...

  9. Hibernate&lpar;十四&rpar;抓取策略

    抓取策略: 抓取策略是当应用程序需要在(Hibernate实体对象图的)关联关系间进行导航的时候,Hibernate如何获取关联对象的策略.Hibernate的抓取策略是Hibernate提升性能的一 ...

  10. MySQL数据库之安装

    一.基础部分 1.数据库是什么 之前所学,数据要永久保存,比如用户注册的用户信息,都是保存于文件中,而文件只能存在于某一台机器上. 如果我们不考虑从文件中读取数据的效率问题,并且假设我们的程序所有的组 ...