ACODE - Alphacode


Alice and Bob need to send secret messages to each other and are discussing ways to encode their messages:

Alice: “Let’s just use a very simple code: We’ll assign ‘A’ the code word 1, ‘B’ will be 2, and so on down to ‘Z’ being assigned 26.”

Bob: “That’s a stupid code, Alice. Suppose I send you the word ‘BEAN’ encoded as 25114. You could decode that in many different ways!”

Alice: “Sure you could, but what words would you get? Other than ‘BEAN’, you’d get ‘BEAAD’, ‘YAAD’, ‘YAN’, ‘YKD’ and ‘BEKD’. I think you would be able to figure out the correct decoding. And why would you send me the word ‘BEAN’ anyway?”

Bob: “OK, maybe that’s a bad example, but I bet you that if you got a string of length 5000 there would be tons of different decodings and with that many you would find at least two different ones that would make sense.”

Alice: “How many different decodings?”

Bob: “Jillions!”

For some reason, Alice is still unconvinced by Bob’s argument, so she requires a program that will determine how many decodings there can be for a given string using her code.

Input

Input will consist of multiple input sets. Each set will consist of a single line of at most 5000 digits representing a valid encryption (for example, no line will begin with a 0). There will be no spaces between the digits. An input line of ‘0’ will terminate the input and should not be processed.

Output

For each input set, output the number of possible decodings for the input string. All answers will be within the range of a 64 bit signed integer.

Example

Input:
25114
1111111111
3333333333
0

Output:
6
89
1

hide comments
testadizzy: 2020-02-21 11:17:46

I got it right but it took me well over an hour. Need to practice more

sudhanshu751: 2020-01-25 12:54:13

For everyone facing difficulty in building up the solution, try thinking about the number of possible decodings from the end of the string towards the starting.
It will be easier to get to solution if you think in reverse order. Begin from end of the string and build the solution towards the start.

singhaditya97: 2020-01-09 07:20:20

i am new to programming and believe that it will take me at least a life time to reach the solution to this problem.
may God help me.

elzahaby: 2020-01-06 18:20:51

i acctually backtracked it and i was thinking about all the cases that not overlapping so i didn't memoize it and got timelimit second day i memoize it after seeing the video in the other comment and got the AC xDDD

payalmangla17: 2019-12-31 14:03:50

Good question to learn new things. Might be invalid test cases (cases that can't occur,i.e, 100) are not included. Try these
1013
211003
100
21103
101230
0
output
2
0
0
2
0

rising_stark: 2019-12-30 18:26:13

For those who are beginners in DP, this is a good one.
There are several videos on the exact same problem on YouTube.
I won't share the logic or solution here bcoz it takes the fun out of problem solving.
Here's the link: https://www.youtube.com/watch?v=qli-JCrSwuk&t=876s for python users.
But logic will be clear and if still not then you can use even this for JAVA users https://www.youtube.com/watch?v=YcJTyrG3bZs or even on LeetCode.

noob_again: 2019-12-29 18:36:15

can anyone help me with the logic? I am new in DP.

alone_musk: 2019-12-29 03:54:32

I never checked for invalid test cases. All you have to check is zeros that come in between and (note: no two consecutive zeros come together ie, test cases like these 10002 or 90 don't exist in this problem.)

tokyoghoul1993: 2019-12-15 19:21:04

I have tried all testcases from comments.. but still WA :(
https://www.spoj.com/status/ns=25073422#
plz help

kaizukizio: 2019-11-23 08:22:24

wow

Last edit: 2019-11-23 08:23:37

Added by:Adrian Kuegel
Date:2005-07-09
Time limit:0.5s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All
Resource:ACM East Central North America Regional Programming Contest 2004