Here is another spoj problem that asks how to find the number of distinct subsequences of a string ?

For example,

Input
AAA
ABCDEFG
CODECRAFT

Output
4
128
496

How can I solve this problem ?

link|improve this question

2  
Heads-up: They have an interesting definition of a subsequence. According to their definition "AC" is a subsequence of "ABC", which it wouldn't be according to my understanding. Maybe everyone else agrees with theirs, but I thought I'd highlight it. – Joachim Sauer Mar 1 '11 at 7:11
2  
@Joachim why not ? "AC" is a subsequence and "AB" and "BC" are substrings maybe you confuse with the substring and subsequence – hilal Mar 1 '11 at 7:16
1  
maybe I do and maybe their definition is the correct one anyway, I'm not arguing that. I just said that intuitively I'd have interpreted it differently and wanted to provide a heads-up if anyone had the same (possibly wrong) idea as I had. – Joachim Sauer Mar 1 '11 at 7:18
feedback

1 Answer

up vote 13 down vote accepted

It's a classic dynamic programming problem.

Let:

dp[i] = number of distinct subsequences ending with a[i]
sum[i] = dp[1] + dp[2] + ... + dp[i]. So sum[n] will be your answer.
last[i] = last position of character i in the given string.

A null string has one subsequence, so dp[0] = 1.

read a
n = strlen(a)
for i = 1 to n
  dp[i] = sum[i - 1] - sum[last[a[i]] - 1]
  sum[i] = sum[i - 1] + dp[i]
  last[a[i]] = i

return sum[n]

Explanation

dp[i] = sum[i - 1] - sum[last[a[i]] - 1]

Initially, we assume we can append a[i] to all subsequences ending on previous characters, but this might violate the condition that the counted subsequences need to be distinct. Remember that last[a[i]] gives us the last position a[i] appeared on until now. The only subsequences we overcount are those that the previous a[i] was appended to, so we subtract those.

sum[i] = sum[i - 1] + dp[i]
last[a[i]] = i

Update these values as per their definition.

If your indexing starts from 0, use a[i - 1] wherever I used a[i]. Also remember to wrap your computations in a mod function if you're going to submit code. This should be implemented like this:

mod(x) = (x % m + m) % m

In order to correctly handle negative values in some languages (such as C/C++).

link|improve this answer
+1: Good explanation. – Aryabhatta Mar 1 '11 at 15:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.