zoukankan      html  css  js  c++  java
  • Bacon's Cipher(培根密码)

    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("
    ");
    30     }
    31     return 0;
    32 }
  • 相关阅读:
    WebView loadData乱码问题
    记录常用工具
    android toolbar学习
    百度地图V5.0地图定位
    JS调JAVA代码
    开始使用Android Stdio
    记录下平时看到的好句子
    开发者必备网址
    android:ellipsize实现跑马灯效果总结
    seo查询命令
  • 原文地址:https://www.cnblogs.com/wkfvawl/p/9208497.html
Copyright © 2011-2022 走看看