LeetCode - 97 Interleaving String
Medium
題目
Given strings s1, s2, and s3, find whether s3 is formed by an interleaving of s1 and s2.
An interleaving of two strings s and t is a configuration where s and t are divided into n and m substrings respectively, such that:
s = s1 + s2 + ... + snt = t1 + t2 + ... + tm|n - m| <= 1
The interleaving is s1 + t1 + s2 + t2 + s3 + t3 + ... or t1 + s1 + t2 + s2 + t3 + s3 + ...
Note: a + b is the concatenation of strings a and b.
Example 1

Input: s1 = "aabcc", s2 = "dbbca", s3 = "aadbbcbcac"
Output: true
Explanation: One way to obtain s3 is:
Split s1 into s1 = "aa" + "bc" + "c", and s2 into s2 = "dbbc" + "a".
Interleaving the two splits, we get "aa" + "dbbc" + "bc" + "a" + "c" = "aadbbcbcac".
Since s3 can be obtained by interleaving s1 and s2, we return true.
Example 2
Input: s1 = "aabcc", s2 = "dbbca", s3 = "aadbbbaccc"
Output: false
Explanation: Notice how it is impossible to interleave s2 with any other string to obtain s3.
Example 3
Input: s1 = "", s2 = "", s3 = ""
Output: true
Constraints
0 <= s1.length, s2.length <= 1000 <= s3.length <= 200s1,s2, ands3consist of lowercase English letters.
解題思路
經典字串 DP 題
判斷 s3 能不能由 s1 和 s2 交錯組成
先檢查長度:
- 如果
s1.size() + s2.size() != s3.size() - 代表不可能組成,直接回傳
false
- 如果
DP 定義:
dp[i][j]:代表s1的前i個字和s2的前j個字,能不能組成s3的前i + j個字
初始化:
dp[0][0] = true- 代表兩個空字串可以組成空字串
狀態轉移:
如果目前要接的是
s1[i-1]- 當
i > 0且s1[i-1] == s3[i+j-1] - 代表可以從
dp[i-1][j]轉移過來dp[i][j] = dp[i][j] || dp[i-1][j]
- 當
如果目前要接的是
s2[j-1]- 當
j > 0且s2[j-1] == s3[i+j-1] - 代表可以從
dp[i][j-1]轉移過來dp[i][j] = dp[i][j] || dp[i][j-1]
- 當
這裡用
||是因為:- 只要
dp[i-1][j]或dp[i][j-1]其中一個可以成立 dp[i][j]就可以成立
- 只要
最後答案:
dp[n][m]
Solution Code
Time Complexity
O(n × m)
Space Complexity
O(n × m)
1 | |