Click to view the answer
Of course, but considering that 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.
## Steps
It is a question of **comparing two strings**. After doing similar questions many times, we will develop an intuition to use `dynamic programming` with two-dimensional arrays.
### Common steps in dynamic programming
These five steps are a pattern for solving `dynamic programming` problems.
1. Determine the **meaning** of the `dp[i][j]`
- Since there are two strings, we can use two-dimensional arrays as the default option.
- At first, try to use the problem's `return` value as the value of `dp[i][j]` to determine the meaning of `dp[i][j]`. If it doesn't work, try another way.
- `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. Determine the `dp` array's recurrence formula
- Try to complete the `dp` grid. In the process, you will get inspiration to derive the formula.
```
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]
```
- When analyzing the sample `dp` grid, remember there are three important points which you should pay special 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.
- If the question is also true in reverse (swap `s` and `t`), and we need to use `dp[i - 1][j]` or `dp[i][j - 1]`, then we probably need to use both of them.
- We can derive the `Recurrence 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
```
4. Determine the `dp` array's traversal order
- `dp[i][j]` depends on `dp[i - 1][j - 1]` and `dp[i][j - 1]`, so we should traverse the `dp` array from top to bottom, then from left to right.
5. Check the `dp` array's value
- Print the `dp` to see if it is as expected.
## 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