# Distinct Subsequences

Given a string **S** and a string **T**, count the number of distinct subsequences of **S** which equals **T**.

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).

**Example 1:**

```
Input: S = "rabbbit", T = "rabbit"
Output: 3
Explanation:

As shown below, there are 3 ways you can generate "rabbit" from S.
(The caret symbol ^ means the chosen letters)

rabbbit
^^^^ ^^
rabbbit
^^ ^^^^
rabbbit
^^^ ^^^
```

**Example 2:**

```
Input: S = "babgbag", T = "bag"
Output: 5
Explanation:

As shown below, there are 5 ways you can generate "bag" from S.
(The caret symbol ^ means the chosen letters)

babgbag
^^ ^
babgbag
^^    ^
babgbag
^    ^^
babgbag
  ^  ^^
babgbag
    ^^^
```

## Thoughts

找S中等于T的subsequence数目。subseq match想DP。action为是否让当前的S\[i -1] match T\[j - 1]。dp\[i, j]代表S前i和T前j个有多少个匹配的子序列。dp\[i]\[j]至少有dp\[i-1]\[j]个，如果让S\[i- 1] match T\[j - 1]还有额外dp\[i-1]\[j-1]个。由于只与上一层有关，可以只用一维空间。

## Code

```cpp
/*
 * @lc app=leetcode id=115 lang=cpp
 *
 * [115] Distinct Subsequences
 */
class Solution {
public:
    int numDistinct(string s, string t) {
         const int M = s.size(), N = t.size();
         vector<long> dp(vector<long>(N + 1));
         dp[0] = 1;
         for (int i = 1; i <= M; ++i) {
             for (int j = N; j >= 1; --j) {
                 if (s[i - 1] == t[j - 1]) {
                     dp[j] += dp[j - 1];
                 } 
             }
         }
         return dp[N];
    }
};


```

## Analysis

TC: O(mn)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://hao-fu-1.gitbook.io/oj/dynamic_programming_ii/distinct_subsequences.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
