Distinct Subsequences

描述

Given a string S and a string T, count the number of distinct subsequences of T in S.

A subsequence of a string is a new string which is formed from the original string by deleting some (can be none) of the characters without disturbing the relative positions of the remaining characters. (ie, "ACE" is a subsequence of "ABCDE" while "AEC" is not).

Here is an example:S = "rabbbit", T = "rabbit"

Return 3.

分析

设状态为f(i,j),表示T[0,j]S[0,i]里出现的次数。首先,无论S[i]T[j]是否相等,若不使用S[i],则f(i,j)=f(i-1,j);若S[i]==T[j],则可以使用S[i],此时f(i,j)=f(i-1,j)+f(i-1, j-1)

代码

  1. // Distinct Subsequences
  2. // 二维动规+滚动数组
  3. // 时间复杂度O(m*n),空间复杂度O(n)
  4. public class Solution {
  5. public int numDistinct(String s, String t) {
  6. int[] f = new int[t.length() + 1];
  7. f[0] = 1;
  8. for (int i = 0; i < s.length(); ++i) {
  9. for (int j = t.length() - 1; j >= 0; --j) {
  10. f[j + 1] += s.charAt(i) == t.charAt(j) ? f[j] : 0;
  11. }
  12. }
  13. return f[t.length()];
  14. }
  15. }

原文: https://soulmachine.gitbooks.io/algorithm-essentials/content/java/dp/distinct-subsequences.html