Here is another spoj problem that asks how to find the number of distinct subsequences of a string ?
For example,
Input
AAA
ABCDEFG
CODECRAFTOutput
4
128
496
How can I solve this problem ?
|
Here is another spoj problem that asks how to find the number of distinct subsequences of a string ? For example,
How can I solve this problem ?
| |||||||||||||
feedback
|
|
It's a classic dynamic programming problem. Let:
A null string has one subsequence, so
Explanation
Initially, we assume we can append
Update these values as per their definition. If your indexing starts from 0, use
In order to correctly handle negative values in some languages (such as C/C++). | |||
feedback
|