639. Decode Ways II

xiaoxiao2021-02-28  4

A message containing letters from A-Z is being encoded to numbers using the following mapping way:

'A' -> 1 'B' -> 2 ... 'Z' -> 26

Beyond that, now the encoded string can also contain the character '*', which can be treated as one of the numbers from 1 to 9.

Given the encoded message containing digits and the character '*', return the total number of ways to decode it.

Also, since the answer may be very large, you should return the output mod 109 + 7.

Example 1:

Input: "*" Output: 9 Explanation: The encoded message can be decoded to the string: "A", "B", "C", "D", "E", "F", "G", "H", "I".

Example 2:

Input: "1*" Output: 9 + 9 = 18

Note:

The length of the input string will fit in range [1, 105].The input string will only contain the character '*' and digits '0' - '9'. 思路:DP, 状态转移要分类讨论 public class Solution { public int numDecodings(String s) { char[] cs = s.toCharArray(); long[] dp = new long[s.length()+1]; dp[0] = 1; dp[1] = s.charAt(0)=='*' ? 9 : 1; if(s.charAt(0) == '0')dp[1]=0; for(int i=2; i<dp.length; i++) { if(cs[i-1] == '*') { if(cs[i-2] == '*') dp[i] = 9*dp[i-1] + 15*dp[i-2]; else if(cs[i-2] >= '3') dp[i] = 9*dp[i-1]; else if(cs[i-2] == '2') dp[i] = 9*dp[i-1] + 6*dp[i-2]; else if(cs[i-2] == '1') dp[i] = 9*dp[i-1] + 9*dp[i-2]; else dp[i] = 9*dp[i-1]; } else if(cs[i-1] >= '7'){ if(cs[i-2] == '*' || cs[i-2] == '1') dp[i] = dp[i-1] + dp[i-2]; else dp[i] = dp[i-1]; } else if(cs[i-1] == '0') { if(cs[i-2] == '*') dp[i] = 2*dp[i-2]; else if(cs[i-2] == '1' || cs[i-2] == '2') dp[i] = dp[i-2]; } else { if(cs[i-2] == '*') dp[i] = dp[i-1] + 2*dp[i-2]; else if(cs[i-2] >= '3') dp[i] = dp[i-1]; else if(cs[i-2] == '0') dp[i] = dp[i-1]; else dp[i] = dp[i-1] + dp[i-2]; } dp[i] = (long) (dp[i]%(1e9+7)); } return (int) dp[cs.length]; } } public class Solution { int M = 1000000007; public int numDecodings(String s) { long[] dp = new long[s.length() + 1]; dp[0] = 1; dp[1] = s.charAt(0) == '*' ? 9 : s.charAt(0) == '0' ? 0 : 1; for (int i = 1; i < s.length(); i++) { if (s.charAt(i) == '*') { dp[i + 1] = 9 * dp[i]; if (s.charAt(i - 1) == '1') dp[i + 1] = (dp[i + 1] + 9 * dp[i - 1]) % M; else if (s.charAt(i - 1) == '2') dp[i + 1] = (dp[i + 1] + 6 * dp[i - 1]) % M; else if (s.charAt(i - 1) == '*') dp[i + 1] = (dp[i + 1] + 15 * dp[i - 1]) % M; } else { dp[i + 1] = s.charAt(i) != '0' ? dp[i] : 0; if (s.charAt(i - 1) == '1') dp[i + 1] = (dp[i + 1] + dp[i - 1]) % M; else if (s.charAt(i - 1) == '2' && s.charAt(i) <= '6') dp[i + 1] = (dp[i + 1] + dp[i - 1]) % M; else if (s.charAt(i - 1) == '*') dp[i + 1] = (dp[i + 1] + (s.charAt(i) <= '6' ? 2 : 1) * dp[i - 1]) % M; } } return (int) dp[s.length()]; } }
转载请注明原文地址: https://www.6miu.com/read-250367.html

最新回复(0)