Decode Ways II

A message containing letters from de >A-Zde> 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:

  1. The length of the input string will fit in range [1, 105].
  2. The input string will only contain the character '*' and digits '0' - '9'.
使用动态规划的思想,从字符串的最后一位向前计算,数组的每一位表示从这一位往后的子串有多少种Decode方法,递推公式如下
第i字符第i+1字符           递推公式
0任意dp[i] = 0
1*dp[i] = dp[i+1] + dp[i+2] * 9
10~9dp[i] = dp[i+1] + dp[i+2]
2*dp[i] = dp[i+1] + dp[i+2] * 6
20~6dp[i] = dp[i+1] + dp[i+2]
27~9dp[i] = dp[i+1]
3~9任意dp[i] = dp[i+1]
**dp[i] = dp[i+1] * 9 + dp[i+2] * 15
*0~6dp[i] = dp[i+1] * 9 + dp[i+2] * 2
*7~9dp[i] = dp[i+1] * 9 + dp[i+2]
class Solution {
    public int numDecodings(String s) {
        int len = s.length();
        char[] chs = s.toCharArray();
        long[] record = new long[len + 1];
        record[len] = 1;
        int it = len - 1;
        for(; it > -1; it--){
        	char cur = chs[it];
        	if(it == len - 1){
        		if(cur == '*'){
        			record[it] = 9;
        		}
        		else if(cur == '0'){
        			record[it] = 0;
        		}
        		else{
        			record[it] = 1;
        		}
        		continue;
        	}
        	char next = chs[it + 1];
        	if(cur == '0'){
        		record[it] = 0;
        	}
        	else if(cur == '1'){
        		if(next == '*'){
        			record[it] = record[it + 1] + record[it + 2] * 9;
        		}
        		else{
        			record[it] = record[it + 1] + record[it + 2];
        		}
        	}
        	else if(cur == '2'){
        		if(next == '*')
        			record[it] = record[it + 1] + record[it + 2] * 6;
        		else if(next >= '0' && next <= '6')
        			record[it] = record[it + 1] + record[it + 2];
        		else
        			record[it] = record[it + 1];
        	}
        	else if(cur >= '3' && cur <= '9'){
        		record[it] = record[it + 1];
        	}
        	else{
        		record[it] += record[it + 1] * 9;
        		if(next >= '0' && next <= '6')
        			record[it] += record[it + 2] * 2;
        		else if(next >= '7' && next <= '9')
        			record[it] += record[it + 2];
        		else if(next == '*')
        			record[it] += record[it + 2] * 15;
        	}
        	record[it] %= 1000000007;
        }
        return (int)record[0];
    }
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值