国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

1002: Clairewd’s message

2019-11-08 02:11:47
字體:
來源:轉載
供稿:網友

1002: Clairewd’s message

Time Limit: 1 Sec  Memory Limit: 128 MB

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.

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

abcdabcdqwertabcde

HINT

Source

介個題目的意思就是給你一個26個字母的對照表,就是例如qwertyuiopasdfghjklzxcvbnm 表示q對應的a,w對應的b,e對應的c.....類推m對應的z。然后再給你一個字符串,密碼包括密文+明文(這個概念我理解了好久-。-)qwert就是密文,然后qwert按對照表出來的明文就是abcde,然鵝,這個字符串可能是殘缺的,它并不一定是密碼!只有密文是一定全部都在的。所以就要從中間開始找啦。你要做的就是找到密文和明文的分界點,輸出密文+明文。具體怎么找 ↓↓↓

#include <stdio.h>#include <string.h>int main(){    int n;    scanf("%d",&n);    while(n--)    {        char a[100]={0},b[100101]={0},dic[200]={0};        scanf("%s%s",a,b);        int n=strlen(b),m,w=97;        m=(1+n)/2;   //一開始用了n/2 結果一直錯,后來發現有點小問題-0-  n為奇數的時候可能會出現中間字母恰好和第一個和最后一個對應                     //例一來說 abbabba 輸出本應該是abbabbabbabb  但是n/2 就會是abbabb        int i=0,j;        for(j=0;j<strlen(a);j++)dic[a[j]]=w++;        while((m+i)<n)        {            if(dic[b[i]]==b[i+m])i++;            else {m++;i=0;}        }            for(i=0;i<m;i++)printf("%c",b[i]);            for(i=0;i<m;i++)printf("%c",dic[b[i]]);            printf("/n");    }    return 0;}


發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 大冶市| 铁力市| 泊头市| 阿拉善左旗| 上犹县| 德化县| 山阳县| 梁平县| 大庆市| 平和县| 漳浦县| 曲阜市| 清涧县| 乌兰县| 昭通市| 柳江县| 铜川市| 白水县| 黄浦区| 基隆市| 彭山县| 突泉县| 织金县| 锦州市| 自治县| 申扎县| 西城区| 浦东新区| 上饶县| 岗巴县| 田东县| 遂宁市| 江北区| 武陟县| 明溪县| 宣武区| 井陉县| 辽中县| 曲沃县| 田林县| 新化县|