Click to view the answer
Of course, but considering that for this problem a `one-dimensional rolling array` is not as easy to understand as a `two-dimensional array`, and the implementation process is also prone to errors, so here I didn't give the relevant code implementation. If you are interested, you can try it.
- The **compare two strings** question is about dealing with "two swappable arrays". After doing similar questions many times, we will form the intuition of using `two-dimensional arrays` for dynamic programming.
## Pattern of "Dynamic Programming"
"Dynamic Programming" requires the use of the `dp` array to store the results. The value of `dp[i][j]` can be converted from its previous (or multiple) values through a formula. Therefore, the value of `dp[i][j]` is derived step by step, and it is related to the previous `dp` record value.
#### "Dynamic programming" is divided into five steps
1. Determine the **meaning** of each value of the array `dp`.
2. Initialize the value of the array `dp`.
3. Fill in the `dp` grid data **in order** according to an example.
4. Based on the `dp` grid data, derive the **recursive formula**.
5. Write a program and print the `dp` array. If it is not as expected, adjust it.
#### Detailed description of these five steps
1. Determine the **meaning** of each value of the array `dp`.
- First determine whether `dp` is a one-dimensional array or a two-dimensional array. A `one-dimensional rolling array` means that the values of the array are overwritten at each iteration. Most of the time, using `one-dimensional rolling array` instead of `two-dimensional array` can simplify the code; but for some problems, such as operating "two swappable arrays", for the sake of ease of understanding, it is better to use `two-dimensional array`.
- Try to use the meaning of the `return value` required by the problem as the meaning of `dp[i]` (one-dimensional) or `dp[i][j]` (two-dimensional). It works about 60% of the time. If it doesn't work, try other meanings.
- Try to save more information in the design. Repeated information only needs to be saved once in a `dp[i]`.
- Use simplified meanings. If the problem can be solved with `boolean value`, don't use `numeric value`.
2. Initialize the value of the array `dp`. The value of `dp` involves two levels:
1. The length of `dp`. Usually: `condition array length plus 1` or `condition array length`.
2. The value of `dp[i]` or `dp[i][j]`. `dp[0]` or `dp[0][0]` sometimes requires special treatment.
3. Fill in the `dp` grid data **in order** according to an example.
- The "recursive formula" is the core of the "dynamic programming" algorithm. But the "recursive formula" is obscure. If you want to get it, you need to make a table and use data to inspire yourself.
- If the original example is not good enough, you need to redesign one yourself.
- According to the example, fill in the `dp` grid data "in order", which is very important because it determines the traversal order of the code.
- Most of the time, from left to right, from top to bottom. But sometimes it is necessary to traverse from right to left, from bottom to top, from the middle to the right (or left), such as the "palindrome" problems. Sometimes, it is necessary to traverse a line twice, first forward and then backward.
- When the order is determined correctly, the starting point is determined. Starting from the starting point, fill in the `dp` grid data "in order". This order is also the order in which the program processes.
- In this process, you will get inspiration to write a "recursive formula". If you can already derive the formula, you do not need to complete the grid.
4. Based on the `dp` grid data, derive the **recursive formula**.
- There are three special positions to pay attention to: `dp[i - 1][j - 1]`, `dp[i - 1][j]` and `dp[i][j - 1]`, the current `dp[i][j]` often depends on them.
- When operating "two swappable arrays", due to symmetry, we may need to use `dp[i - 1][j]` and `dp[i][j - 1]` at the same time.
5. Write a program and print the `dp` array. If it is not as expected, adjust it.
- Focus on analyzing those values that are not as expected.
After reading the above, do you feel that "dynamic programming" is not that difficult? Try to solve this problem. 🤗
## Step by Step Solutions
1. Determine the **meaning** of the `dp[i][j]`.
- `dp[i][j]` represents whether the first `i` letters of `s` are a subsequence of `t`'s first `j` letters.
- `dp[i][j]` is `true` or `false`.
2. Determine the `dp` array's initial value.
- Use an example:
```
After initialization, the 'dp' array would be:
s = "abc", t = "ahbgdc"
# a h b g d c
# T T T T T T T # dp[0]
# a F F F F F F F
# b F F F F F F F
# c F F F F F F F
```
- `dp[0][j] = true` because `dp[0]` represents the empty string, and empty string is a subsequence of any string.
- `dp[i][j] = false (i != 0)`.
3. Fill in the `dp` grid data "in order" according to an example.
```
1. s = "a", t = "ahbgdc"
# a h b g d c
# T T T T T T T
# a F T T T T T T # dp[1]
```
```
2. s = "ab", t = "ahbgdc"
# a h b g d c
# T T T T T T T
# a F T T T T T T
# b F F F T T T T
```
```
3. s = "abc", t = "ahbgdc"
# a h b g d c
# T T T T T T T
# a F T T T T T T
# b F F F T T T T
# c F F F F F F T # dp[3]
```
4. Based on the `dp` grid data, derive the "recursive formula".
```ruby
if s[i - 1] == t[j - 1]
dp[i][j] = dp[i - 1][j - 1]
else
dp[i][j] = dp[i][j - 1]
end
```
5. Write a program and print the `dp` array. If it is not as expected, adjust it.
## Complexity
- Time complexity: `O(N * M)`.
- Space complexity: `O(N * M)`.
## Python
```python
class Solution:
def isSubsequence(self, s: str, t: str) -> bool:
column_count = len(t) + 1
dp = [[True] * column_count]
for _ in s:
dp.append([False] * column_count)
for i in range(1, len(dp)):
for j in range(1, len(dp[0])):
if s[i - 1] == t[j - 1]:
dp[i][j] = dp[i - 1][j - 1]
else:
dp[i][j] = dp[i][j - 1]
return dp[-1][-1]
```
## C++
```cpp
class Solution {
public:
bool isSubsequence(string s, string t) {
vector