POJ 1026 Cipher (置换群)

网友投稿 582 2022-09-05

POJ 1026 Cipher (置换群)

POJ 1026 Cipher (置换群)

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

104 5 3 7 2 8 1 6 10 91 Hello Bob1995 CERC00

Sample Output

BolHeol bC RCE

题意

给出一个 ​​n​​​ 个数的置换,按照置换的规则将一个字符串置换 ​​k​​​ 次,如果字符串长度不足 ​​n​​​ ,则在末尾补空格,求置换 ​​k​​ 次之后的字符串是什么。

思路

本来打算模拟出一个置换的前 100000 种情况,然后把所有的结果存储在一个数组中。

只是这道题目只给了 ​​10M​​ 的内存限制,提交了好几次都是内存超限,再小一点又是运行错误了。

最后改成 【置换 + 轮换 + 模】 的方法之后就可以过了。

把给出的 ​​key​​ 写成置换的形式,然后对其分解求出每部分的轮换以及轮换的长度,因为在变换过程中每一个轮换中的元素所占有的位置不会改变,所以只是这些局部的数字会循环变化,循环的长度也就是轮换的长度。

AC 代码

#include#include#include#include#include#includeusing namespace std;#include#include#define INF (1<<25)char str[210]; // 输入的字符串int a[210]; // keyint G[210][210]; // 存储群的每一个轮换int cut[210]; // 存储每个轮换的长度int ds[210]; // key 与下标之间的映射int top; // 轮换的个数int n;void solve() // 求所有轮换以及轮换的长度{ bool vis[210]= {false}; top=0; for(int i=1; i<=n; i++) { int p=a[i]; if(!vis[p]) { cut[top]=0; while(!vis[p]) { vis[p]=true; G[top][cut[top]++]=p; p=ds[p]; } top++; } }}void get(int x) // 获取第x次加密后得到的密文{ int ans[210]; for(int i=0; i

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:51nod 1829 函数 (斯特林数)
下一篇:两个程序员的故事(程序员创业故事)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~