ECNA2013 C . Playing Fair with Cryptography (模拟)

题目描述

Encryption is the process of taking plaintext and producing the corresponding ciphertext. One method to do this is the Playfair cipher. This cipher was invented by (who else) Charles Wheatstone in the 1850’s (but got its name from one of its most ardent promoters, the Scottish scientist Lyon Playfair). Unlike many substitution ciphers, the Playfair cipher does not encrypt single letters at a time, but groups of two letters called digraphs. The encryption process uses a 5 × 5 grid generated by a secret key known only to the two parties using the cipher (hopefully). The grid is generated as follows: You write the letters of the key, one letter per square row-wise in the grid starting at the top. Any repeated letters in the key are skipped. After this is done, the remaining unused letters in the alphabet are placed in order in the remaining squares, with I and J sharing the same square. For example, if the key was “ECNA PROGRAMMING CONTEST”, the generated square would look like the following:
在这里插入图片描述

You encrypt a digraph using the following rules:

If both letters are in the same row, replace each with the letter to its immediate right (wrapping around at the end). For example, using the above grid the plaintext digraph DS is encrypted as FB, and AP is encrypted as PE.
If both letters are in the same column, replace each with the letter immediately below it (again wrapping around at the bottom). For example, PF is encrypted as IU (or JU), and WO is encrypted as CS.
Otherwise, “slide” the first character across its row until it is in the same column as the second character, and do the same for the second character. The two characters you end up on are the encrypted characters of the digraph. If you view the original digraph as corners of a rectangle in the grid, you are replacing them with the characters in the other two corners. For example, TU is encrypted as FH, UT is encrypted as HF, and ZC is encrypted as WP.
What happens when the digraph contains the same letter twice? In the original Playfair cipher you insert the letter ‘X’ between the two letters and continue encrypting. You also use an extra ‘X’ at the end of the plaintext if you have an odd number of letters. Thus the plaintext “OOPS” would first be changed to the digraphs “OX”, “OP” and “SX” and then would be encrypted as “GWICBW” (using the grid above). Note that the plaintext “POOS” would not need any added letters since the two ‘O’s do not appear in the same digraph.

We’ll modify the Playfair cipher in one simple way: Instead of always using ‘X’ as the inserted letter, use ‘A’ the first time an insertion is needed, then ‘B’ the next time, and so on (though you should never use ‘J’ as an inserted letter; just go from ‘I’ to ‘K’). Once you hit ‘Z’, you go back to using ‘A’. If the inserted letter would result in a digraph with the same two letters, you just skip to the next inserted letter. For example, “OOPS” would now become the digraph stream “OA”, “OP”, “SB” before being encrypted, and the plaintext “AABCC” would become the digraph stream “AB”, “AB”, “CD”, “CE”.

Given a key and plaintext, you are to generate the corresponding ciphertext.

输入描述
The input file will start with an integer n indicating the number of problem instances. Each instance consists of two lines, the first containing the key and the second the plaintext to encrypt. Both of these may contain upper- and lower-case letters, as well as spaces and non-alphabetic characters (both of which should be ignored). For simplicity, the letters ‘j’ and ’J’ will never appear in any key or plaintext.

输出描述
For each problem instance, output the case number followed by the corresponding ciphertext using upper-case letters with no space. Always use the letter ‘I’ instead of ‘J’ in the ciphertext

1
ECNA Programming Contest 2013
This is the easy problem!

Case 1: HVOFOFHVCPCPDWEIGSHNGD

题意

给出字符串s,t,用字符串s构造加密矩阵,求出字符串t的密文。
题目定义了一种加密方式:
首先构造加密矩阵,先遍历字符串s,依次将不在矩阵里的字符放置在矩阵里;然后将26个字母里还没有被放置在矩阵里的字符依次放在矩阵里。
然后加密的时候是每次都对两个字符进行操作,如果两个字符在同一行,都变为右侧的字母(循环的,一直在同一行);如果两个字符在同一列,都变为下册的字母(循环的,一直在同一列);否则,将其变为对角线的两个字母。
如果两个字母相同的话,就从A开始不断地插入。
注意:J应当始终被跳过。

思路

题目里处理的是大写字母,所以先对字符串进行处理,去掉多余字符,将小写字母变为大写字母。
首先应当构造出加密矩阵a,记录每个字母在加密矩阵里对应在第几行和第几列,分别为tx,ty。然后开始进行加密,每次都取两个字母。
如果当前字符等于下一个字符,那么就加密当前字母和新插入的字母;
如果只剩一个字符,加密当前字符和新插入的字符;
其他情况,加密当前字符和下一个字符。

代码

#pragma GCC optimize(2)
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int mod=1e9+7;

char a[10][10];
int b[27];
int tx[27],ty[27];

char getNext(char ch,int &idx){
	if(idx==ch-'A') idx=(idx+1)%26;
	if(idx==9) idx++;
	ch=idx+'A';
	idx=(idx+1)%26;
	if(idx==9) idx++;
	return ch;
}

void cul(char u,char v,char &x,char &y){
	int tu=u-'A',tv=v-'A';
	if(tx[tu]==tx[tv]){
		//cout<<"1"<<endl;
		//cout<<tu<<" "<<tx[tu]<<" "<<ty[tu]<<endl;
		//cout<<tv<<" "<<tx[tv]<<" "<<ty[tv]<<endl;
		//cout<<(ty[tu]+1)%5<<"***"<<(ty[tv]+1)%5<<endl;
		x=a[tx[tu]][(ty[tu]+1)%5];
		y=a[tx[tv]][(ty[tv]+1)%5];
		//cout<<x<<" "<<y<<endl;
	}else if(ty[tu]==ty[tv]){
		//cout<<"2"<<endl;
		x=a[(tx[tu]+1)%5][ty[tu]];
		y=a[(tx[tv]+1)%5][ty[tv]];
	}else{
		//cout<<"3"<<endl;
		x=a[tx[tu]][ty[tv]];
		y=a[tx[tv]][ty[tu]];
	}
}

int main(){
    int _,Case=1;cin>>_;
    while(_--){
    	string ss,s="",t="",tt;
    	if(Case==1) getchar();
    	getline(cin,ss);
    	getline(cin,tt);
    //	cout<<ss<<endl;
    //	cout<<tt<<endl;
    	for(int i=0;i<ss.size();i++){
    		if(ss[i]>='a'&&ss[i]<='z'){
    			s+=ss[i]-'a'+'A';
			}
			else if(ss[i]>='A'&&ss[i]<='Z'){
				s+=ss[i];
			}
		}
		for(int i=0;i<tt.size();i++){
			if(tt[i]=='J') tt[i]='I';
			if(tt[i]>='a'&&tt[i]<='z') t+=tt[i]-'a'+'A';
			else if(tt[i]>='A'&&tt[i]<='Z') t+=tt[i];
		}
		//cout<<s<<endl;
		//cout<<t<<endl;
    	int idx=0;
    	memset(b,0,sizeof b);
    	b[9]=1;
    	for(int i=0;i<5;i++)
    		for(int j=0;j<5;j++)
    			a[i][j]='*';
		for(int i=0;i<5;i++){
    		for(int j=0;j<5;j++){
    			while(b[s[idx]-'A']&&idx<s.size()) idx++;
    			if(idx<s.size()){
    				a[i][j]=s[idx],b[s[idx]-'A']=1;
				}
				else break;
			}
		}
		idx=0;
		for(int i=0;i<5;i++)
			for(int j=0;j<5;j++){
				if(a[i][j]!='*') continue;
				while(b[idx]) idx++;
				a[i][j]=idx+'A';
				b[idx]=1;
			}
		for(int i=0;i<5;i++){
			for(int j=0;j<5;j++){
				//cout<<a[i][j]<<" ";
				tx[a[i][j]-'A']=i;
				ty[a[i][j]-'A']=j;
			}
			//cout<<"\n";
		}
		idx=0;
		char x,y;
		string ans="";
		for(int i=0;i<t.size();i+=2){
			if(t[i]==t[i+1]){
				cul(t[i],getNext(t[i],idx),x,y);
				i--;
			}
			else if(i+2>t.size()){
				cul(t[i],getNext(t[i],idx),x,y);
			}
			else cul(t[i],t[i+1],x,y);
			ans=ans+x+y;
		}
		cout<<"Case "<<Case++<<": "<<ans<<endl;
	}
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

豆沙睡不醒

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值