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
  • 相关阅读:
    Sql ----- sqlserver 中的if 判断 case... when
    Bootstrap ---------
    js:定时弹出图片(获取属性、setInterval函数)
    js:轮播图(获取属性、setInterval函数)
    js:表单校验(获取元素、事件)
    js:获取元素的值(id、标签、html5新增、特殊元素的获取)
    js:流程控制(分支结构、顺序结构、循环结构)
    拦截器原理(AOP、责任链模式、拦截器的创建、自定义拦截器)
    Action类
    Struts2配置文件(动态方法调用)
  • 原文地址:https://www.cnblogs.com/ya-cpp/p/4048714.html
Copyright © 2011-2022 走看看