加载中...
1309-解码字母到整数映射(Decrypt String from Alphabet to Integer Mapping)
发表于:2021-12-03 | 分类: 简单
字数统计: 644 | 阅读时长: 3分钟 | 阅读量:

原文链接: https://leetcode-cn.com/problems/decrypt-string-from-alphabet-to-integer-mapping

英文原文

Given a string s formed by digits ('0' - '9') and '#' . We want to map s to English lowercase characters as follows:

  • Characters ('a' to 'i') are represented by ('1' to '9') respectively.
  • Characters ('j' to 'z') are represented by ('10#' to '26#') respectively. 

Return the string formed after mapping.

It's guaranteed that a unique mapping will always exist.

 

Example 1:

Input: s = "10#11#12"
Output: "jkab"
Explanation: "j" -> "10#" , "k" -> "11#" , "a" -> "1" , "b" -> "2".

Example 2:

Input: s = "1326#"
Output: "acz"

Example 3:

Input: s = "25#"
Output: "y"

Example 4:

Input: s = "12345678910#11#12#13#14#15#16#17#18#19#20#21#22#23#24#25#26#"
Output: "abcdefghijklmnopqrstuvwxyz"

 

Constraints:

  • 1 <= s.length <= 1000
  • s[i] only contains digits letters ('0'-'9') and '#' letter.
  • s will be valid string such that mapping is always possible.

中文题目

给你一个字符串 s,它由数字('0' - '9')和 '#' 组成。我们希望按下述规则将 s 映射为一些小写英文字符:

  • 字符('a' - 'i')分别用('1''9')表示。
  • 字符('j' - 'z')分别用('10#' - '26#')表示。 

返回映射之后形成的新字符串。

题目数据保证映射始终唯一。

 

示例 1:

输入:s = "10#11#12"
输出:"jkab"
解释:"j" -> "10#" , "k" -> "11#" , "a" -> "1" , "b" -> "2".

示例 2:

输入:s = "1326#"
输出:"acz"

示例 3:

输入:s = "25#"
输出:"y"

示例 4:

输入:s = "12345678910#11#12#13#14#15#16#17#18#19#20#21#22#23#24#25#26#"
输出:"abcdefghijklmnopqrstuvwxyz"

 

提示:

  • 1 <= s.length <= 1000
  • s[i] 只包含数字('0'-'9')和 '#' 字符。
  • s 是映射始终存在的有效字符串。

通过代码

高赞题解

class Solution {
public:
    string freqAlphabets(string s) {
        int cur, n = s.length();
        string ans = "";
        for(int i = n-1; i >= 0; i--) {
            if(s[i] == '#') {
                cur = (s[i-2] - '0') * 10 + s[i-1] - '0';
                i -= 2;
            } else {
                cur =  s[i] - '0';
            }
            ans = char(cur - 1 + 'a') + ans;
        }
        return ans;
    }
};

统计信息

通过次数 提交次数 AC比率
17106 22676 75.4%

提交历史

提交时间 提交结果 执行时间 内存消耗 语言
上一篇:
1307-口算难题(Verbal Arithmetic Puzzle)
下一篇:
1310-子数组异或查询(XOR Queries of a Subarray)
本文目录
本文目录