Hard
,String
,DP
We can scramble a string s to get a string t using the following algorithm:
If the length of the string is 1, stop.
If the length of the string is > 1, do the following:
s
, divide it to x
and y
where s = x + y
.s
may become s = x + y
or s = y + x
.x
and y
.Given two strings s1
and s2
of the same length, return true
if s2
is a scrambled string of s1
, otherwise, return false
.
Example 1:
Input: s1 = "great", s2 = "rgeat"
Output: true
Explanation: One possible scenario applied on s1 is:
"great" --> "gr/eat" // divide at random index.
"gr/eat" --> "gr/eat" // random decision is not to swap the two substrings and keep them in order.
"gr/eat" --> "g/r / e/at" // apply the same algorithm recursively on both substrings. divide at random index each of them.
"g/r / e/at" --> "r/g / e/at" // random decision was to swap the first substring and to keep the second substring in the same order.
"r/g / e/at" --> "r/g / e/ a/t" // again apply the algorithm recursively, divide "at" to "a/t".
"r/g / e/ a/t" --> "r/g / e/ a/t" // random decision is to keep both substrings in the same order.
The algorithm stops now, and the result string is "rgeat" which is s2.
As one possible scenario led s1 to be scrambled to s2, we return true.
Example 2:
Input: s1 = "abcde", s2 = "caebd"
Output: false
Example 3:
Input: s1 = "a", s2 = "a"
Output: true
Constraints:
s1.length
== s2.length
s1.length
<= 30s1
and s2
consist of lowercase English letters.喜得TLE
class Solution {
public:
bool DFS(string s1, string s2)
{
if(s1==s2)
return true;
bool res = false;
int n = s1.size();
for(int i = 1; i < n && !res; i++)
{
res |= (DFS(s1.substr(0, i), s2.substr(0, i)) && DFS(s1.substr(i), s2.substr(i)));
res |= (DFS(s1.substr(0, i), s2.substr(n-i, i)) && DFS(s1.substr(i), s2.substr(0, n-i)));
}
return res;
}
bool isScramble(string s1, string s2) {
return DFS(s1, s2);
}
};
class Solution {
public:
bool DFS(string s1, string s2, unordered_map<string, bool>& m)
{
if(s1==s2)
return true;
if(m.count(s1+s2))
return m[s1+s2];
bool res = false;
int n = s1.size();
for(int i = 1; i < n && !res; i++)
{
res |= (DFS(s1.substr(0, i), s2.substr(0, i), m) && DFS(s1.substr(i), s2.substr(i), m));
res |= (DFS(s1.substr(0, i), s2.substr(n-i, i), m) && DFS(s1.substr(i), s2.substr(0, n-i), m));
}
m[s1+s2] = res;
return res;
}
bool isScramble(string s1, string s2) {
unordered_map<string, bool> m;
return DFS(s1, s2, m);
}
};
Time:
Extra Space:
Follow up:
XD March 31, 2023