-
Notifications
You must be signed in to change notification settings - Fork 0
/
DecodeWays.cpp
50 lines (41 loc) · 1.09 KB
/
DecodeWays.cpp
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
/*
Problem: Decode Ways
A message containing letters from A-Z is being encoded to numbers using the following mapping:
'A' -> 1
'B' -> 2
...
'Z' -> 26
Given an encoded message containing digits, determine the total number of ways to decode it.
For example,
Given encoded message "12", it could be decoded as "AB" (1 2) or "L" (12).
The number of ways decoding "12" is 2.
Solution: Dynamic Programming
Time Complexity: O(n)
Space Complexity: O(n)
where n is the number of characters in the input string.
*/
class Solution {
public:
int numDecodings(string s) {
int dp[s.size()];
memset(dp,0,sizeof(dp));
int index=1;
if(s[0]!='0')
dp[0]=1;
else
dp[0]=0;
while(index<s.size()){
int temp=0;
temp=(s[index-1]-'0')*10;
temp+=s[index]-'0';
if(int(s[index]-'0')){
dp[index]=dp[index-1];
}
if(temp<=26&&temp>9){
dp[index]+=dp[index-2<0?0:index-2];
}
index++;
}
return dp[s.size()-1];
}
};