zoukankan      html  css  js  c++  java
  • uva-1339Ancient 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
    

    题目理解了半天,然后又去看别人的思路,还差得好远,
    还有就是,memset()的用法忘记了,然后自己就胡乱写数组所占内存空间,结果。。。
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    
    
    ///学习了一下QuickSort,要好好努力
    int AdjustArray(int s[], int l, int r)
    {
        int i = l, j = r;
        int x = s[l];
        while(i < j)
        {
            while(i < j && s[j] >= x)
                j--;
            if(i < j)
            {
                s[i] = s[j];
                i++;
            }
    
            while(i < j && s[i] < x)
                i++;
            if(i < j)
            {
                s[j] = s[i];
                j--;
            }
        }
    
        s[i] = x;
        return i;
    }
    void QuickSort(int a[], int l, int r)
    {
        if(l < r)
        {
            int i = AdjustArray(a, l, r);
            QuickSort(a, l, i-1);
            QuickSort(a, i+1, r);
        }
    }
    
    ///这是合并版,感觉人家讲的挺好  http://blog.csdn.net/morewindows/article/details/6684558
    void quick_sort(int s[], int l, int r)
    {
        if(l < r)
        {
            int i = l, j = r, x = s[l];
            while(i < j)
            {
                while(i < j && s[j] >= x)
                    j--;
                if(i < j)
                    s[i++] = s[j];
    
                while(i < j && s[i] < x)
                    i++;
                if(i < j)
                    s[j--] = s[i];
            }
            s[i] = x;
            quick_sort(s, l, i-1);
            quick_sort(s, i+1, r);
        }
    }
    int main()
    {
        char s1[110], s2[110];
        int a[26], b[26];
        while(scanf("%s%*c", s1) != EOF)
        {
            scanf("%s%*c", s2);
            int len = strlen(s1);
            memset(a, 0, sizeof(a));
            memset(b, 0, sizeof(b));
    
            int i = 0;
            for(i = 0; i < len; ++i)
            {
                a[s1[i] - 'A']++;
                b[s2[i] - 'A']++;
            }
    
            quick_sort(a, 0, 25);
            quick_sort(b, 0, 25);
    
            int num = 0;
            for(i = 0; i < 26; ++i)
            {
                if(a[i] == b[i])
                {
                    num++;
                }
                else
                    break;
            }
    
            if(num == 26)
            {
                printf("YES
    ");
            }
            else
            {
                printf("NO
    ");
            }
        }
        return 0;
    }
    View Code
  • 相关阅读:
    同一个ip、不同端口的两个应用,cookie竟然是可以互相访问到
    JS类型判断typeof、instanceof、Object.prototype.toString.call()
    js 控制一次加载一张图片,加载完成后再加载下一张
    cookie机制和session机制的区别
    Do not access Object.prototype method 'hasOwnProperty' from target object
    Vue 中使用mockjs模拟后端数据
    vue遍历数据字典
    this的用法
    关于html5的离线缓存(转帖)
    js正则 (二)
  • 原文地址:https://www.cnblogs.com/ya-cpp/p/4048714.html
Copyright © 2011-2022 走看看