Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
38 lines (36 loc) · 1.55 KB

File metadata and controls

38 lines (36 loc) · 1.55 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
package com.fishercoder.solutions;
public class _639 {
public static class Solution1 {
/**
* reference: https://leetcode.com/articles/decode-ways-ii/#approach-2-dynamic-programming-accepted
*/
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()];
}
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.