30. W's Cipher

题目描述

Weird Wally's Wireless Widgets, Inc. manufactures an eclectic assortment of small, wireless, network capable devices, ranging from dog collars, to pencils, to fishing bobbers. All these devices have very small memories. Encryption algorithms like Rijndael, the candidate for the Advanced Encryption Standard (AES) are demonstrably secure but they don't fit in such a tiny memory. In order to provide some security for transmissions to and from the devices, WWWW uses the following algorithm, which you are to implement. Encrypting a message requires three integer keys, k1, k2, and k3. The letters [a-i] form one group, [j-r] a second group, and everything else ([s-z] and underscore) the third group. Within each group the letters are rotated left by ki positions in the message. Each group is rotated independently of the other two. Decrypting the message means doing a right rotation by ki positions within each group. Consider the message the_quick_brown_fox encrypted with ki values of 2, 3 and 1. The encrypted string is _icuo_bfnwhoq_kxert. The figure below shows the decrypting right rotations for one character in each of the three character groups.

Looking at all the letters in the group [a-i] we see {i,c,b,f,h,e} appear at positions {2,3,7,8,11,17} within the encrypted message. After a right rotation of k1=2, these positions contain the letters {h,e,i,c,b,f}. The table below shows the intermediate strings that come from doing all the rotations in the first group, then all rotations in the second group, then all the rotations in the third group. Rotating letters in one group will not change any letters in any of the other groups.

All input strings contain only lowercase letters and underscores(_). Each string will be at most 80 characters long. The ki are all positive integers in the range 1-100.

输入描述:

Input consists of information for one or more encrypted messages. Each problem begins with one line containing k1, k2, and k3 followed by a line containing the encrypted message. The end of the input is signalled by a line with all key values of 0.

输出描述:

For each encrypted message, the output is a single line containing the decrypted string.

示例1

输入

2 3 1
_icuo_bfnwhoq_kxert
1 1 1
bcalmkyzx
3 7 4
wcb_mxfep_dorul_eov_qtkrhe_ozany_dgtoh_u_eji
2 4 3
cjvdksaltbmu
0 0 0

输出

the_quick_brown_fox
abcklmxyz
the_quick_brown_fox_jumped_over_the_lazy_dog
ajsbktcludmv
思路

又是一道英文题,读起来挺费劲的,不过意思没那么复杂,我们来按照题目的意思模拟一遍解密过程
使用题目中的加密字符串 _icuo_bfnwhoq_kxert,过程如图 1 所示。


图 1

了解了题意之后,这道题实现起来看上去不是很难,用一个 num 数组存放字符串每一位的归属组数,然后把字符串中的每一组分别放到三个数组,对三个数组分别进行解密,然后根据 num 数组的顺序将三个数组中的字符依次弹出到结果数组,结果数组便是解密的字符串。

解法
#include <stdio.h>
#include <string.h>

int main() {
    for (int k1, k2, k3; ~scanf("%d %d %d", &k1, &k2, &k3);) {
        char str[81];    //存输入字符串
        int num[81];    //存每个字符的归属组
        char str1[81] = "", str2[81] = "", str3[81] = "";    //3 个字符串分别存 3 组数据
        char cstr1[81] = "", cstr2[81] = "", cstr3[81] = "";    //3 个字符串分别存解密后的 3 组数据
        char res[81] = "";    //存放解密后的结果字符串
        int x1 = 0, x2= 0, x3 = 0;    //控制每组字符串和结果字符串自增输入
        scanf("%s", str);    //经提醒才注意到字符串输入时不用加 &
        for (int i = 0; i < strlen(str); i++) {    //把 str 的每个位置的分组记录到 num 数组,并且归类成 3 组
            if (str[i] >= 'a' && str[i] <= 'i') {
                num[i] = 1;
                str1[x1++] = str[i];
            }
            else if (str[i] >= 'j' && str[i] <= 'r') {    //开始犯了个错误这里只写了 if,导致第一个 if 执行的话 else 也会执行,这里说明了 else if 的意义
                num[i] = 2;
                str2[x2++] = str[i];
            }
            else {
                num[i] = 3;
                str3[x3++] = str[i];
            }
        }
        x1 = 0;
        x2 = 0;
        x3 = 0;
        for (int i = 0; i < strlen(str1); i++)    //解密第一组
            cstr1[(i + k1) % strlen(str1)] = str1[i];
        for (int i = 0; i < strlen(str2); i++)    //解密第二组
            cstr2[(i + k2) % strlen(str2)] = str2[i];
        for (int i = 0; i < strlen(str3); i++)    //解密第三组
            cstr3[(i + k3) % strlen(str3)] = str3[i];
        for (int i = 0; i < strlen(str); i++) {    //各组字符分别按照顺序归入结果数组
            if (num[i] == 1) 
                res[i] = cstr1[x1++];
            if (num[i] == 2) 
                res[i] = cstr2[x2++];
            if (num[i] == 3) 
                res[i] = cstr3[x3++];
        }
        for (int i = 0; i < strlen(str); i++)
            printf("%c", res[i]);
        printf("\n");
    }
    return 0;
}

这道题并不是很难,因为没有涉及巧妙的算法,但是却能耗费很多的时间,首先是英文题干很长,理解不容易,然后是代码虽然逻辑清晰,但很长,又涉及很多的数组和变量,极其容易出错。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 215,463评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,868评论 3 391
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 161,213评论 0 351
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,666评论 1 290
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,759评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,725评论 1 294
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,716评论 3 415
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,484评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,928评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,233评论 2 331
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,393评论 1 345
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,073评论 5 340
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,718评论 3 324
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,308评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,538评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,338评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,260评论 2 352

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 7,320评论 0 10
  • 向乔治·奥威尔致敬 一 在这个世界上总有一些不可思议的人——或猪——出生,比如我们可爱可敬的主人公,当它从母亲笨重...
    狗蛋呀阅读 414评论 0 0
  • Servlet Servlet 简介Java Servlet是和平台无关的服务器端组件,它运行在Servlet容器...
    piziyang12138阅读 325评论 0 0
  • 摘要 本章主要介绍flask怎么连接到mysql数据库和实现数据库的增删改查 一、连接mysql数据库 1. in...
    裴general阅读 1,315评论 0 0
  • 声明 该系列文章由书籍《Netty权威指南》第二版整理而来。只为记录学习笔记。若认为内容侵权请及时通知本人删除相关...
    hylexus阅读 719评论 0 0