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
  • 相关阅读:
    12套有用的免费 PSD 格式 Android UI 素材
    使用 Canvas 和 JavaScript 创建逼真的下雨效果
    在网页设计中使用漂亮字体的16个优秀例子
    Koala – 开源的前端预处理器语言图形编译工具
    BackgroundCheck – 根据图片亮度智能切换元素样式
    经典网页设计:18个示例展示图片在网页中的使用
    TogetherJS – 酷!在网站中添加在线实时协作功能
    30个令人惊叹的灵感来自自然风光的网站设计《下篇》
    太有才了!创新的街头涂鸦手绘欣赏【中篇】
    15款美丽的设备模板,帮助展示你的 APP
  • 原文地址:https://www.cnblogs.com/ya-cpp/p/4048714.html
Copyright © 2011-2022 走看看