|
| 1 | +# [2325. Decode the Message](https://leetcode.com/problems/decode-the-message) |
| 2 | + |
| 3 | +[中文文档](/solution/2300-2399/2325.Decode%20the%20Message/README.md) |
| 4 | + |
| 5 | +## Description |
| 6 | + |
| 7 | +<p>You are given the strings <code>key</code> and <code>message</code>, which represent a cipher key and a secret message, respectively. The steps to decode <code>message</code> are as follows:</p> |
| 8 | + |
| 9 | +<ol> |
| 10 | + <li>Use the <strong>first</strong> appearance of all 26 lowercase English letters in <code>key</code> as the <strong>order</strong> of the substitution table.</li> |
| 11 | + <li>Align the substitution table with the regular English alphabet.</li> |
| 12 | + <li>Each letter in <code>message</code> is then <strong>substituted</strong> using the table.</li> |
| 13 | + <li>Spaces <code>' '</code> are transformed to themselves.</li> |
| 14 | +</ol> |
| 15 | + |
| 16 | +<ul> |
| 17 | + <li>For example, given <code>key = "<u><strong>hap</strong></u>p<u><strong>y</strong></u> <u><strong>bo</strong></u>y"</code> (actual key would have <strong>at least one</strong> instance of each letter in the alphabet), we have the partial substitution table of (<code>'h' -> 'a'</code>, <code>'a' -> 'b'</code>, <code>'p' -> 'c'</code>, <code>'y' -> 'd'</code>, <code>'b' -> 'e'</code>, <code>'o' -> 'f'</code>).</li> |
| 18 | +</ul> |
| 19 | + |
| 20 | +<p>Return <em>the decoded message</em>.</p> |
| 21 | + |
| 22 | +<p> </p> |
| 23 | +<p><strong>Example 1:</strong></p> |
| 24 | +<img alt="" src="https://fastly.jsdelivr.net/gh/doocs/leetcode@main/solution/2300-2399/2325.Decode%20the%20Message/images/ex1new4.jpg" style="width: 752px; height: 150px;" /> |
| 25 | +<pre> |
| 26 | +<strong>Input:</strong> key = "the quick brown fox jumps over the lazy dog", message = "vkbs bs t suepuv" |
| 27 | +<strong>Output:</strong> "this is a secret" |
| 28 | +<strong>Explanation:</strong> The diagram above shows the substitution table. |
| 29 | +It is obtained by taking the first appearance of each letter in "<u><strong>the</strong></u> <u><strong>quick</strong></u> <u><strong>brown</strong></u> <u><strong>f</strong></u>o<u><strong>x</strong></u> <u><strong>j</strong></u>u<u><strong>mps</strong></u> o<u><strong>v</strong></u>er the <u><strong>lazy</strong></u> <u><strong>d</strong></u>o<u><strong>g</strong></u>". |
| 30 | +</pre> |
| 31 | + |
| 32 | +<p><strong>Example 2:</strong></p> |
| 33 | +<img alt="" src="https://fastly.jsdelivr.net/gh/doocs/leetcode@main/solution/2300-2399/2325.Decode%20the%20Message/images/ex2new.jpg" style="width: 754px; height: 150px;" /> |
| 34 | +<pre> |
| 35 | +<strong>Input:</strong> key = "eljuxhpwnyrdgtqkviszcfmabo", message = "zwx hnfx lqantp mnoeius ycgk vcnjrdb" |
| 36 | +<strong>Output:</strong> "the five boxing wizards jump quickly" |
| 37 | +<strong>Explanation:</strong> The diagram above shows the substitution table. |
| 38 | +It is obtained by taking the first appearance of each letter in "<u><strong>eljuxhpwnyrdgtqkviszcfmabo</strong></u>". |
| 39 | +</pre> |
| 40 | + |
| 41 | +<p> </p> |
| 42 | +<p><strong>Constraints:</strong></p> |
| 43 | + |
| 44 | +<ul> |
| 45 | + <li><code>26 <= key.length <= 2000</code></li> |
| 46 | + <li><code>key</code> consists of lowercase English letters and <code>' '</code>.</li> |
| 47 | + <li><code>key</code> contains every letter in the English alphabet (<code>'a'</code> to <code>'z'</code>) <strong>at least once</strong>.</li> |
| 48 | + <li><code>1 <= message.length <= 2000</code></li> |
| 49 | + <li><code>message</code> consists of lowercase English letters and <code>' '</code>.</li> |
| 50 | +</ul> |
| 51 | + |
| 52 | +## Solutions |
| 53 | + |
| 54 | +<!-- tabs:start --> |
| 55 | + |
| 56 | +### **Python3** |
| 57 | + |
| 58 | +```python |
| 59 | +class Solution: |
| 60 | + def decodeMessage(self, key: str, message: str) -> str: |
| 61 | + d = {} |
| 62 | + i = 0 |
| 63 | + for c in ''.join(key.split()): |
| 64 | + if c in d: |
| 65 | + continue |
| 66 | + d[c] = ascii_lowercase[i] |
| 67 | + i += 1 |
| 68 | + return ''.join([' ' if c == ' ' else d[c] for c in message]) |
| 69 | +``` |
| 70 | + |
| 71 | +### **Java** |
| 72 | + |
| 73 | +```java |
| 74 | +class Solution { |
| 75 | + public String decodeMessage(String key, String message) { |
| 76 | + Map<Character, Character> d = new HashMap<>(); |
| 77 | + String lowcase = "abcdefghijklmnopqrstuvwxyz"; |
| 78 | + d.put(' ', ' '); |
| 79 | + int i = 0; |
| 80 | + for (char c : key.toCharArray()) { |
| 81 | + if (d.containsKey(c)) { |
| 82 | + continue; |
| 83 | + } |
| 84 | + d.put(c, lowcase.charAt(i++)); |
| 85 | + } |
| 86 | + StringBuilder ans = new StringBuilder(); |
| 87 | + for (char c : message.toCharArray()) { |
| 88 | + ans.append(d.get(c)); |
| 89 | + } |
| 90 | + return ans.toString(); |
| 91 | + } |
| 92 | +} |
| 93 | +``` |
| 94 | + |
| 95 | +### **C++** |
| 96 | + |
| 97 | +```cpp |
| 98 | +class Solution { |
| 99 | +public: |
| 100 | + string decodeMessage(string key, string message) { |
| 101 | + unordered_map<char, char> d; |
| 102 | + d[' '] = ' '; |
| 103 | + int i = 0; |
| 104 | + string lowcase = "abcdefghijklmnopqrstuvwxyz"; |
| 105 | + for (char c : key) |
| 106 | + { |
| 107 | + if (d.count(c)) continue; |
| 108 | + d[c] = lowcase[i]++; |
| 109 | + } |
| 110 | + string ans; |
| 111 | + for (char c : message) ans.push_back(d[c]); |
| 112 | + return ans; |
| 113 | + } |
| 114 | +}; |
| 115 | +``` |
| 116 | +
|
| 117 | +### **Go** |
| 118 | +
|
| 119 | +```go |
| 120 | +func decodeMessage(key string, message string) string { |
| 121 | + d := map[rune]byte{} |
| 122 | + d[' '] = ' ' |
| 123 | + i := 0 |
| 124 | + lowcase := "abcdefghijklmnopqrstuvwxyz" |
| 125 | + for _, c := range key { |
| 126 | + if _, ok := d[c]; ok { |
| 127 | + continue |
| 128 | + } |
| 129 | + d[c] = lowcase[i] |
| 130 | + i++ |
| 131 | + } |
| 132 | + var ans []byte |
| 133 | + for _, c := range message { |
| 134 | + ans = append(ans, d[c]) |
| 135 | + } |
| 136 | + return string(ans) |
| 137 | +} |
| 138 | +``` |
| 139 | + |
| 140 | +### **TypeScript** |
| 141 | + |
| 142 | +```ts |
| 143 | + |
| 144 | +``` |
| 145 | + |
| 146 | +### **...** |
| 147 | + |
| 148 | +``` |
| 149 | +
|
| 150 | +``` |
| 151 | + |
| 152 | +<!-- tabs:end --> |
0 commit comments