Bacon’s Cipher(培根密码)

Bacon’s Cipher(培根密码)DescriptionBacon’scipherortheBaconiancipherisamethodofsteganography(amethodofhidingasecretmessageasopposedtoatruecipher)devisedbyFrancisBacon.Amessageisconcea…

大家好,欢迎来到IT知识分享网。Bacon's

Description

Bacon’s cipher or the Baconian cipher is a method of steganography (a method of hiding a secret message as opposed to a true cipher) devised by Francis Bacon. A message is concealed in the presentation of text, rather than its content. 

As we all know, each letter has its position in the alphabet, ‘A’ is 0, ‘B’ is 1, ‘C’ is 2…and so on. And each number can be represented in binary code, for example, 2 is ‘10’ in binary system. Then we expand the binary code to five digits by adding leading zeros, then 10 becomes 00010. Now we can use this number to encode. To simplify the question, we define the rules as below: 

0 corresponds to a random uppercase letter and 1 corresponds to a random number, so after encoding, 00010 ( ‘C’ ) is transformed to ABC1D or JUG9N. 

To decode, do the opposite way around. 
 

Input

The first line contains a positive number l, represents the length of the encoded string. L<=10000 and can be divided by 5. The second line is the encoded string.
 

Output

The original string.
 

Sample Input

35
ON1E2H5Q39AK2TGIC9ERT39B2P423L8B20D

 

Sample Output

FLEENOW

 
题目意思:培根密码的转换机制,在培根密码中,大写字母代表0,数字代表1,然后将得到的二进制数按照5个一组的规律转换成十进制进而转换成大写字母,0代表A,1代表B,以此类推。
 
解题思路:直接模拟一下即可。
 
 
 
 1 #include<stdio.h>
 2 #include<string.h>
 3 int main()
 4 {
 5     int n,i,ans;
 6     int a[100010];
 7     char c;
 8     while(scanf("%d",&n)!=EOF)
 9     {
10         getchar();
11         for(i=0;i<n;i++)
12         {
13             scanf("%c",&c);
14             if(c>='A'&&c<='Z')
15             {
16                 a[i]=0;
17             }
18             else
19             {
20                 a[i]=1;
21             }
22 
23         }
24         for(i=0;i<n;i+=5)
25         {
26             ans=a[i]*16+a[i+1]*8+a[i+2]*4+a[i+3]*2+a[i+4]*1;
27             printf("%c",ans+'A');
28         }
29         printf("\n");
30     }
31     return 0;
32 }

 

转载于:https://www.cnblogs.com/wkfvawl/p/9208497.html

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/16052.html

(0)

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

关注微信