Decode Variations
Question
A letter can be encoded to a number in the following way:
'A' -> '1', 'B' -> '2', 'C' -> '3', ..., 'Z' -> '26'
A message is a string of uppercase letters, and it is encoded first using this scheme. For example, 'AZB' -> '1262' Given a string of digits S from 0-9 representing an encoded message, return the number of ways to decode it.
Example
input: S = '1262'
output: 3
explanation: There are 3 messages that encode to '1262': 'AZB', 'ABFB', and 'LFB'.
Solution
We can use dynamic programming to solve this problem.
We create an array dp
where dp[i]
will represent the number of ways to decode the message up to the i-th digit.
We start iterating through each digit of the encoded message.
For each digit, we consider two possibilities:
If the current digit is not '0', it can be decoded on its own. So, we add the number of ways to decode the message up to the previous digit (
dp[i-1]
) todp[i]
.If the last two digits form a valid encoding (between 10 and 26), we add the number of ways to decode the message up to two digits before (
dp[i-2]
) todp[i]
.
We continue this process until we reach the end of the encoded message.
The final result is stored in dp[n], where n is the length of the input string.
Code
def solution(s):
dp = [0 for _ in range(len(s))]
dp[0] = 1
for i in range(1, len(s)):
if s[i] != '0':
dp[i] += dp[i - 1]
if 10 <= int(s[i-1:i+1]) <= 26:
dp[i] += dp[i - 2] if i - 2 > 0 else 1
return dp[-1]
def main():
assert solution(s = '1262') == 3
if __name__ == '__main__':
main()
Time& Space Complexity
Time Complexity: O(N)
It takes only one iteration of all input (assuming there are N letters) so the time complexity is O(N).
Space Complexity: O(N)
I use an array to store up to N+1 values (for an initialization value and decode ways of s[:0], s[:1], s[:2] and etc.) so the space needed is proportional to N and hence the space complexity is O(N) as well.