赞
踩
C++、Java、python代码:
【华为OD】C卷真题 100分:密码解密 C/C++代码实现[思路+代码]-CSDN博客
【华为OD】C卷真题 100分:密码解密 Java代码实现[思路+代码]-CSDN博客
【华为OD】C卷真题 100分:密码解密 Python代码实现[思路+代码]-CSDN博客
给定一段“密文”字符串 s,其中字符都是经过“密码本”映射的,现需要将“密文”解密并输出。
映射的规则('a' ~ 'i')分别用('1' ~ '9')表示;('j' ~ 'z')分别用("10*" ~ "26*")表示。
约束:映射始终唯一。
“密文”字符串
明文字符串
翻译后的文本长度在100以内
输入
20*19*20*
输出
tst
输入
12345610*
输出
abcdefj
879
+---+
3 | | ++ + +---|
| | | 3 + 6 + | + | +
| + | | + + + | + | +
| + | +---+ + + +++++ + + + | +
| + | + | + +----+ | | + + + | +
| + 3 | + | + + + 2 | | 2 + + + | +
| + | + | + + + | | + + + | +
| +---+ + | | | + ----+ | +---+ | | + | +
| | + | | | + | | | | | | + | +
| 1 | + | 8 | | + 1 | | | 1 | | 1 | | + | +
| | + | | | + | | | | | | | + | +
| +---+ + +---+ | ++---+ ++ +---+ +---+ | + | +
| | + | | | ++ | | |+ | +
|0 | + | 0 | 0 | ++ | 0 | |+ | +
| | + | | | ++ | | |+ | +
+---+ + +-------+ +---+| +|+ | +
+ + | +
0 1 2 3 4 5 6 7 8 9 10 11 12 + v: w u m u 1 0 2 4
按映射来进行字符串替换即可,优先判断2位数的情况,再判断一位数即可
-
- const readline = async () => (await iter.next()).value;
-
- const rl = require("readline").createInterface({ input: process.stdin });
- const iter = rl[Symbol.asyncIterator]();
-
- async function codeDecrypt(str) {
- let ans = "";
- let index = 0;
- while (index < str.length) {
- if (index + 2 < str.length && str[index + 2] === '*') {
- ans += String.fromCharCode(parseInt(str.substring(index, index + 2)) + 'a'.charCodeAt(0) - 1);
- index += 3;
- } else {
- ans += String.fromCharCode(parseInt(str.substring(index, index + 1)) + 'a'.charCodeAt(0) - 1);
- index += 1;
- }
- }
- return ans;
- }
-
- async function main() {
- const cipherText = await readline();
- console.log(await codeDecrypt(cipherText));
- rl.close();
- }
-
- main();
'运行
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。