zoukankan      html  css  js  c++  java
  • UVa1399.Ancient Cipher

    题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=4085

    13855995 1339 Ancient Cipher Accepted C++ 0.012 2014-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 $ langle$2, 1, 5, 4, 3, 7, 6, 10, 9, 8$ 
angle$ 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 }

     

     

  • 相关阅读:
    NSIS使用WinVer.nsh头文件判断操作系统版本
    批处理bat命令--获取当前盘符和当前目录和上级目录
    官方 NSIS 插件全集简单介绍
    js 的基础知识变量
    js stringObject的indexOf方法
    js 作为属性的变量
    js 不可变的原始值和可变的对象引用
    jquery完善的处理机制
    jquery对象和DOM对象的相互转换
    CSS3 animation-fill-mode 属性
  • 原文地址:https://www.cnblogs.com/Destiny-Gem/p/3834531.html
Copyright © 2011-2022 走看看