• poj-1026-置换


    Cipher

     

    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
        给出一个字符串和一个置换,询问经过k次这个置换之后得到的新的字符串,还是找出循环节之后模拟即可。
        
     1 #include<iostream>
     2 #include<cstring>
     3 #include<cstdio>
     4 #include<map>
     5 #include<set>
     6 #include<vector>
     7 #include<algorithm>
     8 #include<cmath> 
     9 using namespace std;
    10 #define LL long long 
    11 #define PI acos(-1.0)
    12 char s[220];
    13 char ans[220];
    14 bool v[220];
    15 int a[220];
    16 int main()
    17 {
    18     int n,i,j,k,d;
    19     while(cin>>n&&n){
    20         for(i=1;i<=n;++i){
    21             scanf("%d",&d);
    22             a[d]=i;
    23         }
    24         while(cin>>k&&k){
    25             memset(s,0,sizeof(s));
    26             getchar();
    27             gets(s+1);
    28             for(i=1;i<=n;++i)if(s[i]=='')s[i]=' ';
    29             vector<int>vi;
    30             memset(v,0,sizeof(v));
    31             memset(ans,0,sizeof(ans));
    32             for(i=1;i<=n;++i){
    33                 if(!v[i]){
    34                     vi.clear();
    35                     j=i;
    36                     while(!v[j]){
    37                         vi.push_back(j);
    38                         v[j]=1;
    39                         j=a[j];    
    40                     }
    41                     for(j=0;j<vi.size();++j){
    42                         ans[vi[j]]=s[vi[(j+k%vi.size())%vi.size()]];    
    43                     }
    44                 }
    45             }
    46             cout<<ans+1<<endl;
    47         }
    48         cout<<endl;
    49     } 
    50     return 0;
    51 }

     

  • 相关阅读:
    [转] iphoneX、iphoneXS、iphoneXSMax、iphoneXR适配
    [转] 以 async/await 为例,说明 babel 插件怎么搭
    [转] 使用Node.js实现简易MVC框架
    [转] vue异步处理错误
    [转] 谈谈前端异常捕获与上报
    everything 13问
    Mysql 工具mysqlbinlog
    Mysql 删除日志
    Mysql 错误 ERROR 1 (HY000) at line 1: Can't create/write to file '/home/kaizenly/cfg_dict.csv' (Errcode: 13
    Mysql 问题集
  • 原文地址:https://www.cnblogs.com/zzqc/p/9447565.html
Copyright © 2020-2023  润新知