Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Program to decode a given message in C++
Suppose we are given an encoded message that is a string of integer numbers. Now, these integer numbers can be mapped to a specific letter in the alphabet. a is mapped to 1, b is mapped to 2, c is mapped to 3, and so on. There is also a character '*' that can be in the message and that can be mapped to any of the numbers from 1 to 9. So given a message 'input', we have to find out how many ways it can be decoded.
So, if the input is like input = "18", then the output will be 2.
The message can be decoded to "ah", as 1 maps to "a" and 8 maps to "h". Also, the number can map to "r", as 18 maps to "r". So. there are a total of 2 ways that the input can be decoded.
To solve this, we will follow these steps −
- n := length of input
- Define an array dynArr of size: n+1 and initialize it with zeroes
- p := 1
- k := '0'
- dynArr[0] := 1
- for initialize i := 1, when i
- c := input[i - 1]
- if c is same as 0 and not (k is same as '1' or k is same as '2' or k is same as '*'), then −
- p := 0
- Come out from the loop
- if input[i - 1] is same as '*', then −
- dynArr[i] := (dynArr[i - 1] * 9) mod m
- if k is same as '1' or k is same as '*', then −
- dynArr[i] := (dynArr[i] + dynArr[i - 2] * 9) mod m
- if k is same as '2' or k is same as '*', then −
- dynArr[i] := (dynArr[i] + (dynArr[i - 2] * 6) mod m) mod m
- otherwise,
- if c is not equal to '0', then −
-
- if k is same as '1' or k is same as '*', then −
- dynArr[i] := (dynArr[i] + dynArr[i - 2]) mod m
- if (k is same as '2' or k is same as '*') and input[i - 1]
- dynArr[i] := (dynArr[i] + (dynArr[i - 2]) mod m) mod m
- if k is same as '1' or k is same as '*', then −
Example
Let us see the following implementation to get better understanding −
#includeusing namespace std; const long m = 1e9 + 7; int solve(string input) { int n = input.length(); long long dynArr[n + 1] = {0}; bool p = 1; char k = '0'; dynArr[0] = 1; for (int i = 1; i Input
18Output
2
