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

     

  • 相关阅读:
    委托和事件(无参数事件和有参数事件)
    数据结构和算法
    如何完成.Net下XML文档的读写操作
    MVVM设计模式
    memset用法详解(转)
    C#读写注册表代码
    鼠标按键失灵或单击变双击、拖动不灵等问题维修方法
    从零开始学习 webservice第一集,java webservice简单实例入门教程
    容易忽视但是功能灰常强大的Java API
    持续更新 iText in Action 2nd Edition中文版 个人翻译
  • 原文地址:https://www.cnblogs.com/zzqc/p/9447565.html
Copyright © 2011-2022 走看看