-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDecodeWays2.java
118 lines (111 loc) · 4.28 KB
/
DecodeWays2.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/*https://leetcode.com/problems/decode-ways-ii/*/
class Solution {
int n;
Long[][] table;
int m = (int)1e9+7;
public int numDecodings(String s) {
if (s.charAt(0) == '0') return 0;
n = s.length();
table = new Long[n+1][10];
table[0][0] = count(s.toCharArray(),0,0);
return table[0][0].intValue();
}
private long count(char[] s, int index, int prev)
{
if (index == n) return 1l;
if (table[index][prev] != null) return table[index][prev];
int curr;
table[index][prev] = 0l;
if (s[index] != '*')
{
curr = s[index]-'0';
if (curr != 0) //if it is non-zero i.e. 1,2,...9 , it can be decoded to some character
table[index][prev] += count(s,index+1,curr); //hence go for recursion call with next index
else return table[index][prev]; //if zero, return zero
if (index < n-1) //if we have not reached the last index
{
if (s[index+1] != '*')
{
curr = curr*10+s[index+1]-'0'; //add the next character
if (curr <= 26) //if the value is within the limit
table[index][prev] += count(s,index+2,s[index+1]-'0'); //then two characters can be decoded to some letter between k to z, hence go for recursion call with second next index
}
else
{
int next;
for (int i = 1; i <= 9; ++i)
{
next = curr*10+i;
if (next <= 26)
table[index][prev] += count(s,index+2,i);
}
}
}
}
else
{
for (int i = 1; i <= 9; ++i)
{
curr = i;
if (curr != 0) //if it is non-zero i.e. 1,2,...9 , it can be decoded to some character
table[index][prev] += count(s,index+1,curr); //hence go for recursion call with next index
else return table[index][prev]; //if zero, return zero
if (index < n-1) //if we have not reached the last index
{
if (s[index+1] != '*')
{
curr = curr*10+s[index+1]-'0'; //add the next character
if (curr <= 26) //if the value is within the limit
table[index][prev] += count(s,index+2,s[index+1]-'0'); //then two characters can be decoded to some letter between k to z, hence go for recursion call with second next index
}
else
{
int next;
for (int j = 1; j <= 9; ++j)
{
next = curr*10+j;
if (next <= 26)
table[index][prev] += count(s,index+2,j);
}
}
}
}
}
return table[index][prev] %= m;
}
}
public class Solution {
int M = 1000000007;
Long[] memo;
public int numDecodings(String s) {
memo = new Long[s.length()];
return (int) ways(s.toCharArray(), s.length() - 1);
}
public long ways(char[] s, int i) {
if (i < 0)
return 1;
if (memo[i] != null)
return memo[i];
if (s[i] == '*')
{
long res = 9 * ways(s, i - 1) % M;
if (i > 0 && s[i-1] == '1')
res = (res + 9 * ways(s, i - 2)) % M;
else if (i > 0 && s[i-1] == '2')
res = (res + 6 * ways(s, i - 2)) % M;
else if (i > 0 && s[i-1] == '*')
res = (res + 15 * ways(s, i - 2)) % M;
memo[i] = res;
return memo[i];
}
long res = s[i] != '0' ? ways(s, i - 1) : 0;
if (i > 0 && s[i-1] == '1')
res = (res + ways(s, i - 2)) % M;
else if (i > 0 && s[i-1] == '2' && s[i] <= '6')
res = (res + ways(s, i - 2)) % M;
else if (i > 0 && s[i-1] == '*')
res = (res + (s[i] <= '6' ? 2 : 1) * ways(s, i - 2)) % M;
memo[i] = res;
return memo[i];
}
}