89 lines
3.9 KiB
Java
89 lines
3.9 KiB
Java
//<p>Alice 在给 Bob 用手机打字。数字到字母的 <strong>对应</strong> 如下图所示。</p>
|
||
//
|
||
//<p><img alt="" src="https://assets.leetcode.com/uploads/2022/03/15/1200px-telephone-keypad2svg.png" style="width: 200px; height: 162px;"></p>
|
||
//
|
||
//<p>为了 <strong>打出</strong> 一个字母,Alice 需要 <strong>按</strong> 对应字母 <code>i</code> 次,<code>i</code> 是该字母在这个按键上所处的位置。</p>
|
||
//
|
||
//<ul>
|
||
// <li>比方说,为了按出字母 <code>'s'</code> ,Alice 需要按 <code>'7'</code> 四次。类似的, Alice 需要按 <code>'5'</code> 两次得到字母 <code>'k'</code> 。</li>
|
||
// <li>注意,数字 <code>'0'</code> 和 <code>'1'</code> 不映射到任何字母,所以 Alice <strong>不</strong> 使用它们。</li>
|
||
//</ul>
|
||
//
|
||
//<p>但是,由于传输的错误,Bob 没有收到 Alice 打字的字母信息,反而收到了 <strong>按键的字符串信息</strong> 。</p>
|
||
//
|
||
//<ul>
|
||
// <li>比方说,Alice 发出的信息为 <code>"bob"</code> ,Bob 将收到字符串 <code>"2266622"</code> 。</li>
|
||
//</ul>
|
||
//
|
||
//<p>给你一个字符串 <code>pressedKeys</code> ,表示 Bob 收到的字符串,请你返回 Alice <strong>总共可能发出多少种文字信息</strong> 。</p>
|
||
//
|
||
//<p>由于答案可能很大,将它对 <code>10<sup>9</sup> + 7</code> <strong>取余</strong> 后返回。</p>
|
||
//
|
||
//<p> </p>
|
||
//
|
||
//<p><strong>示例 1:</strong></p>
|
||
//
|
||
//<pre><b>输入:</b>pressedKeys = "22233"
|
||
//<b>输出:</b>8
|
||
//<strong>解释:</strong>
|
||
//Alice 可能发出的文字信息包括:
|
||
//"aaadd", "abdd", "badd", "cdd", "aaae", "abe", "bae" 和 "ce" 。
|
||
//由于总共有 8 种可能的信息,所以我们返回 8 。
|
||
//</pre>
|
||
//
|
||
//<p><strong>示例 2:</strong></p>
|
||
//
|
||
//<pre><b>输入:</b>pressedKeys = "222222222222222222222222222222222222"
|
||
//<b>输出:</b>82876089
|
||
//<strong>解释:</strong>
|
||
//总共有 2082876103 种 Alice 可能发出的文字信息。
|
||
//由于我们需要将答案对 10<sup>9</sup> + 7 取余,所以我们返回 2082876103 % (10<sup>9</sup> + 7) = 82876089 。
|
||
//</pre>
|
||
//
|
||
//<p> </p>
|
||
//
|
||
//<p><strong>提示:</strong></p>
|
||
//
|
||
//<ul>
|
||
// <li><code>1 <= pressedKeys.length <= 10<sup>5</sup></code></li>
|
||
// <li><code>pressedKeys</code> 只包含数字 <code>'2'</code> 到 <code>'9'</code> 。</li>
|
||
//</ul>
|
||
//<div><li>👍 16</li><li>👎 0</li></div>
|
||
package leetcode.editor.cn;
|
||
|
||
// 2266:统计打字方案数
|
||
public class CountNumberOfTexts {
|
||
public static void main(String[] args) {
|
||
Solution solution = new CountNumberOfTexts().new Solution();
|
||
// TO TEST
|
||
}
|
||
|
||
//leetcode submit region begin(Prohibit modification and deletion)
|
||
class Solution {
|
||
public int countTexts(String pressedKeys) {
|
||
int[] cnts = new int[pressedKeys.length() + 1];
|
||
cnts[0] = 1;
|
||
cnts[1] = 1;
|
||
int mod = 1000000007;
|
||
for (int i = 1; i < pressedKeys.length(); i++) {
|
||
cnts[i + 1] = cnts[i];
|
||
if (pressedKeys.charAt(i) == pressedKeys.charAt(i - 1)) {
|
||
cnts[i + 1] += cnts[i - 1];
|
||
cnts[i + 1] %= mod;
|
||
if (i > 1 && pressedKeys.charAt(i) == pressedKeys.charAt(i - 2)) {
|
||
cnts[i + 1] += cnts[i - 2];
|
||
cnts[i + 1] %= mod;
|
||
if (i > 2 && pressedKeys.charAt(i) == pressedKeys.charAt(i - 3) && (pressedKeys.charAt(i) == '7' || pressedKeys.charAt(i) == '9')) {
|
||
cnts[i + 1] += cnts[i - 3];
|
||
cnts[i + 1] %= mod;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
return cnts[pressedKeys.length()];
|
||
}
|
||
}
|
||
//leetcode submit region end(Prohibit modification and deletion)
|
||
|
||
}
|