-
Notifications
You must be signed in to change notification settings - Fork 2.3k
/
0097-interleaving-string.cpp
41 lines (35 loc) · 1.07 KB
/
0097-interleaving-string.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
Given 3 strings, find if s3 is formed by interleaving of s1 & s2
Ex. s1 = "aabcc", s2 = "dbbca", s3 = "aadbbcbcac" -> true
DFS + memo, cache on s1 & s2 indices i & j
2 choices: either take s1 & iterate i, or take s2 & iterate j
Time: O(m x n)
Space: O(m x n)
*/
class Solution {
public:
bool isInterleave(string s1, string s2, string s3) {
if (s3.size() != s1.size() + s2.size()) {
return false;
}
return dfs(s1, s2, s3, 0, 0);
}
private:
map<pair<int, int>, bool> dp;
bool dfs(string s1, string s2, string s3, int i, int j) {
if (i == s1.size() && j == s2.size()) {
return true;
}
if (dp.find({i, j}) != dp.end()) {
return dp[{i, j}];
}
if (i < s1.size() && s1[i] == s3[i + j] && dfs(s1, s2, s3, i + 1, j)) {
return true;
}
if (j < s2.size() && s2[j] == s3[i + j] && dfs(s1, s2, s3, i, j + 1)) {
return true;
}
dp[{i, j}] = false;
return dp[{i, j}];
}
};