zoukankan      html  css  js  c++  java
  • POJ 1026 Cipher(更换)

                                                                   Cipher

    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 19502   Accepted: 5239

    Description

    Bob and Alice started to use a brand-new encoding scheme. Surprisingly it is not a Public Key Cryptosystem, but their encoding and decoding is based on secret keys. They chose the secret key at their last meeting in Philadelphia on February 16th, 1996. They chose as a secret key a sequence of n distinct integers, a1 ; . . .; an, greater than zero and less or equal to n. The encoding is based on the following principle. The message is written down below the key, so that characters in the message and numbers in the key are correspondingly aligned. Character in the message at the position i is written in the encoded message at the position ai, where ai is the corresponding number in the key. And then the encoded message is encoded in the same way. This process is repeated k times. After kth encoding they exchange their message. 

    The length of the message is always less or equal than n. If the message is shorter than n, then spaces are added to the end of the message to get the message with the length n. 

    Help Alice and Bob and write program which reads the key and then a sequence of pairs consisting of k and message to be encoded k times and produces a list of encoded messages. 

    Input

    The input file consists of several blocks. Each block has a number 0 < n <= 200 in the first line. The next line contains a sequence of n numbers pairwise distinct and each greater than zero and less or equal than n. Next lines contain integer number k and one message of ascii characters separated by one space. The lines are ended with eol, this eol does not belong to the message. The block ends with the separate line with the number 0. After the last block there is in separate line the number 0.

    Output

    Output is divided into blocks corresponding to the input blocks. Each block contains the encoded input messages in the same order as in input file. Each encoded message in the output file has the lenght n. After each block there is one empty line.

    Sample Input

    10
    4 5 3 7 2 8 1 6 10 9
    1 Hello Bob
    1995 CERC
    0
    0
    

    Sample Output

    BolHeol  b
    C RCE

    第一次做这样的多个循环节。对每一个循环节中的元素分开求解的题目,记录一下。


    题意:给出一个n个数的置换,依照置换规则把一个字符串置换k次,假设字符串的长度不足n,则在字符串末尾补空格。直到长度为n。求置换k次之后的字符串是什么。


    分析:假设直接依照题目描写叙述的模拟,肯定会超时。
    对整个字符串置换,能够转换为对每一个循环节进行置换。由于一个循环节里面的元素,对其它元素没有影响,这样我们就能够先求出全部的循环节和每一个循环节中的元素及循环节的长度。然后对每一个循环节中的元素进行置换。一个循环节中的元素置换k次,等价于每一个元素置换k%(这个元素所在循环节的长度)次,这样模拟次数变得非常小。就能够模拟了。


    #include <cstdio>
    #include <cstring>
    #include <string>
    #include <algorithm>
    #include <iostream>
    using namespace std;
    
    const int N = 215;
    char str[N];  //原始字符串
    char ans[N]; //置换后的字符串
    int key[N];  //置换规则
    int cnt; //循环节数量
    int num[N]; //每一个循环节的长度
    int cir[N][N]; //cir[i][j]表示第i个循环节中的第j个元素相应的位置
    int vis[N]; //记录每一个数是否訪问过
    
    int n;
    
    void get_circle() {
        memset(vis, 0, sizeof(vis));
        memset(num, 0, sizeof(num));
        cnt = 0;
        for(int i = 1; i <= n; i++) {
            if(!vis[i]) {
                vis[i] = 1;
                num[cnt] = 0;
                int tmp = key[i];
                cir[cnt][num[cnt]++] = tmp;
                while(!vis[tmp]) {
                    vis[tmp] = 1;
                    tmp = key[tmp];
                    cir[cnt][num[cnt]++] = tmp;
                }
                cnt++;
            }
        }
    }
    
    int main() {
        int k;
        while(~scanf("%d",&n) && n) {
            for(int i = 1; i <= n; i++)
                scanf("%d", &key[i]);
            get_circle();
            while(~scanf("%d", &k) && k) {
                gets(str);
                int len = strlen(str);
                for(int i = len; i <= n; i++)
                    str[i] = ' ';
                for(int i = 0; i < cnt; i++) {
                    for(int j = 0; j < num[i]; j++) {
                        ans[cir[i][(j+k)%num[i]]] = str[cir[i][j]];
                    } //第i个循环节中的第j个元素置换k次之后的位置为第(j+k)% num[i]
                }
                ans[n+1] = '';
                printf("%s
    ", ans+1);
            }
            printf("
    ");
        }
        return 0;
    }



    版权声明:本文博主原创文章,博客,未经同意不得转载。

  • 相关阅读:
    搭建GIT服务器
    TCP/IP原理简述
    GIT使用—补丁与钩子
    GIT使用—创建并使用远程版本库
    Tomcat的工作模式和运行模式
    GIT使用—分支与合并
    GIT使用—提交的查找与变更
    南京理工大学
    学习(踩坑)记录——新建工程
    2018一年总结
  • 原文地址:https://www.cnblogs.com/bhlsheji/p/4867411.html
Copyright © 2011-2022 走看看