UVa1399.Ancient Cipher

阅读: 评论:0

UVa1399.Ancient Cipher

UVa1399.Ancient Cipher

题目链接:.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4085

138559951339Ancient CipherAcceptedC++0.0122014-07-09 12:35:33

 


 Ancient Cipher

Ancient Roman empire had a strong government system with various departments, including a secret service department. Important documents were sent between provinces and the capital in encrypted form to prevent eavesdropping. The most popular ciphers in those times were so called substitution cipher and permutation cipher. Substitution cipher changes all occurrences of each letter to some other letter. Substitutes for all letters must be different. For some letters substitute letter may coincide with the original letter. For example, applying substitution cipher that changes all letters from `A' to `Y' to the next ones in the alphabet, and changes `Z' to `A', to the message ``VICTORIOUS'' one gets the message ``WJDUPSJPVT''. Permutation cipher applies some permutation to the letters of the message. For example, applying the permutation 2, 1, 5, 4, 3, 7, 6, 10, 9, 8 to the message ``VICTORIOUS'' one gets the message ``IVOTCIRSUO''. It was quickly noticed that being applied separately, both substitution cipher and permutation cipher were rather weak. But when being combined, they were strong enough for those times. Thus, the most important messages were first encrypted using substitution cipher, and then the result was encrypted using permutation cipher. Encrypting the message ``VICTORIOUS'' with the combination of the ciphers described above one gets the message ``JWPUDJSTVP''. Archeologists have recently found the message engraved on a stone plate. At the first glance it seemed completely meaningless, so it was suggested that the message was encrypted with some substitution and permutation ciphers. They have conjectured the possible text of the original message that was encrypted, and now they want to check their conjecture. They need a computer program to do it, so you have to write one.

Input 

Input file contains several test cases. Each of them consists of two lines. The first line contains the message engraved on the plate. Before encrypting, all spaces and punctuation marks were removed, so the encrypted message contains only capital letters of the English alphabet. The second line contains the original message that is conjectured to be encrypted in the message on the first line. It also contains only capital letters of the English alphabet. The lengths of both lines of the input file are equal and do not exceed 100.

Output 

For each test case, print one output line. Output `YES' if the message on the first line of the input file could be the result of encrypting the message on the second line, or `NO' in the other case.

Sample Input 

 

JWPUDJSTVP
VICTORIOUS
MAMA
ROME
HAHA
HEHE
AAA
AAA
NEERCISTHEBEST
SECRETMESSAGES

 

Sample Output 

 

YES
NO
YES
YES
NO

 解题思路:读了好长时间,没想到就是一道排序的水题。题目大意就是将一个字符串中的字符顺序改变后再不确定的一一对应是否能得到另外一个字符串。

 

 1 #include <iostream>
 2 #include <cstring>
 3 #include <cstdlib>
 4 #include <cstdio>
 5 #include <cctype>
 6 #include <cmath>
 7 #include <algorithm>
 8 #include <numeric>
 9 using namespace std;
10 int main() {
11     string str1, str2;
12     int cnt1[26], cnt2[26];
13     while (cin >> str1 >> str2) {
14         memset(cnt1, 0, sizeof(cnt1));
15         memset(cnt2, 0, sizeof(cnt2));
16 
17         for(int i = 0; i < str1.size(); i++) {
18             cnt1[str1[i] - 'A'] ++;
19             cnt2[str2[i] - 'A'] ++;
20         }
21 
22         sort(cnt1, cnt1 + 26);
23         sort(cnt2, cnt2 + 26);
24 
25         bool flag = true;
26 
27         for(int i = 0 ; i < 26; i++) {
28             if(cnt1[i] != cnt2[i]) {
29                 flag = false;
30                 break;
31             }
32         }
33 
34         if(flag) cout << "YES" << endl;
35         else cout << "NO" << endl;
36 
37     }
38     return 0;
39 }

 

 

 

转载于:.html

本文发布于:2024-02-02 22:20:55,感谢您对本站的认可!

本文链接:https://www.4u4v.net/it/170688365646819.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:Ancient   Cipher
留言与评论(共有 0 条评论)
   
验证码:

Copyright ©2019-2022 Comsenz Inc.Powered by ©

网站地图1 网站地图2 网站地图3 网站地图4 网站地图5 网站地图6 网站地图7 网站地图8 网站地图9 网站地图10 网站地图11 网站地图12 网站地图13 网站地图14 网站地图15 网站地图16 网站地图17 网站地图18 网站地图19 网站地图20 网站地图21 网站地图22/a> 网站地图23