zoukankan      html  css  js  c++  java
  • 2159 -- Ancient Cipher

    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"。

     

    思路:

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

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

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

     1 #include<stdio.h>
     2 #include<math.h>
     3 #include<iostream>
     4 #include<map>
     5 using namespace std;
     6 int main()
     7 {
     8     map<char,int> First,Second;
     9     char c = getchar();
    10     while(c!='
    ')
    11     {
    12         First[c]++;
    13         c = getchar();
    14     }
    15     c = getchar();
    16     while(c!='
    ')
    17     {
    18         Second[c]++;
    19         c = getchar();
    20     }
    21     map<char,int>::iterator FIter = First.begin();
    22     for(;FIter!=First.end();)
    23     {
    24         int temp = 0;
    25         map<char,int>::iterator SIter = Second.begin();
    26         for(;SIter!=Second.end();SIter++)
    27         {
    28             if(FIter->second == SIter->second)
    29             {
    30                 char c1,c2;
    31                 c1 = FIter->first;c2 = SIter->first;
    32                 FIter++;SIter = Second.begin();
    33                 First.erase(c1);
    34                 Second.erase(c2);
    35                 temp = 1;
    36                 break;
    37             }
    38         }
    39         if(!temp)
    40             FIter++;
    41     }
    42     //如果两个map不为空
    43     if(First.size()||Second.size())
    44     {
    45         cout<<"NO"<<endl;
    46     }else{
    47         cout<<"YES"<<endl;
    48     }
    49     First.clear();
    50     Second.clear();
    51 
    52     return 0;
    53 }
  • 相关阅读:
    2、Mybatis中一些常用的概念
    1、Mybatis的基本CRUD
    4、spring 官方下载地址
    3、Spring注解用法的一般步骤
    2、Spring开发的jar文件
    1、Spring的xml完整版命名空间
    1、Struts2和Hibernate的简单整合(带Session的管理方式)
    2、Struts2引入多个配置文件
    利用filter和动态代理解决全站乱码问题
    1、Struts2 的简单配置
  • 原文地址:https://www.cnblogs.com/yxh-amysear/p/8392208.html
Copyright © 2011-2022 走看看