Ancient Cipher
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 36074   Accepted: 11765

Description

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 contains 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 are equal and do not exceed 100.

Output

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

Sample Output

YES

Source

 

题目大意:

古罗马帝王的保密服务部门的保密方法是替换和重新排列。

替换方法是将出现的字符替换成其他的字符。如将'A'替换成'Z',将'Z'替换成'A'。

排列方法是改变原来单词中字母的顺序。例如将顺序变为<2,1,5,4,3,7,6,10,9,8>。应用到字符串

"VICTORIOUS"上,则可以得到"IVOTCIRSUO"。

单用一种解密方法是不安全的,只有将两种方法结合起来才安全。那么问题来了:给你一个原文

字符串和加密字符串,问是否能通过这两种加密方法结合,从而由原文信息得到加密信息。如果

能则输出"YES",否则输出"NO"。

思路:

其实这道题没那么复杂,只要用两个数组分别存下两个字符串中各个字母的个数,排序一下,比较

字母个数是不是都相等就可以了,如果不是全相等,则说明不能从原文信息得到加密信息。如果全

相等,则一定有方法从原文信息得到加密信息。

 #include<stdio.h>
#include<math.h>
#include<iostream>
#include<map>
using namespace std;
int main()
{
map<char,int> First,Second;
char c = getchar();
while(c!='\n')
{
First[c]++;
c = getchar();
}
c = getchar();
while(c!='\n')
{
Second[c]++;
c = getchar();
}
map<char,int>::iterator FIter = First.begin();
for(;FIter!=First.end();)
{
int temp = ;
map<char,int>::iterator SIter = Second.begin();
for(;SIter!=Second.end();SIter++)
{
if(FIter->second == SIter->second)
{
char c1,c2;
c1 = FIter->first;c2 = SIter->first;
FIter++;SIter = Second.begin();
First.erase(c1);
Second.erase(c2);
temp = ;
break;
}
}
if(!temp)
FIter++;
}
//如果两个map不为空
if(First.size()||Second.size())
{
cout<<"NO"<<endl;
}else{
cout<<"YES"<<endl;
}
First.clear();
Second.clear(); return ;
}

最新文章

  1. [原创]MvvmLight中用IDialogService替代DialogMessage的用法
  2. git学习(五):克隆和推送远程仓库
  3. python 类变量和实例变量
  4. 获取设备的mac地址可靠的方法
  5. AngularJs $interval 和 $timeout
  6. struts_23_xwork校验器列表使用例子
  7. 希赛网 &gt; 问答 &gt; 数据库 &gt; MySQL数据库 &gt; MySQL的管理与维护 &gt; MySql开启远程用户登录GRANTALLPRIVILEGESON*.*TO&#39;root&#39;@&#39;%&#39;I MySql开启远程用户登录GRANTALLPRIVILEGESON*.*TO&#39;root&#39;@&#39;%&#39;I
  8. 通过 pxe(网络安装)完成centos 系统的网络安装
  9. 10年java过来人聊聊自己的自学、培训和工作经历
  10. k8s Kubernetes v1.10
  11. 如何用VSCode手动编译Ace Editor
  12. Android Launcher分析和修改4——初始化加载数据
  13. el-container 实践上的布局问题
  14. GraphQL返回分页对象
  15. 微信小程序裁剪图片成圆形
  16. 【BZOJ3434】[Wc2014]时空穿梭 莫比乌斯反演
  17. python __str__ , __repr__区别
  18. EZOJ #226
  19. 28. Implement strStr()【easy】
  20. 分享知识-快乐自己:Shrio 案例Demo概述

热门文章

  1. asp.net page类
  2. Django restfulframework 开发相关知识 整理
  3. golang整数与小数间的加减乘除
  4. django的几种缓存配置
  5. kubernetes之node隔离与恢复
  6. [Abp vNext微服务实践] - 启动流程
  7. Django 语法笔记
  8. java——maven依赖版本冲突
  9. Python&amp;Selenium自动化测试之PO设计模式
  10. Mac安装chromedriver和geckodriver