-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path0087-scramble-string.js
48 lines (43 loc) · 1.47 KB
/
0087-scramble-string.js
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
42
43
44
45
46
47
48
/**
* 87. Scramble String
* https://leetcode.com/problems/scramble-string/
* Difficulty: Hard
*
* We can scramble a string s to get a string t using the following algorithm:
*
* 1. If the length of the string is 1, stop.
* 2. If the length of the string is > 1, do the following:
* - Split the string into two non-empty substrings at a random index, i.e., if the string
* is s, divide it to x and y where s = x + y.
* - Randomly decide to swap the two substrings or to keep them in the same order. i.e.,
* after this step, s may become s = x + y or s = y + x.
* - Apply step 1 recursively on each of the two substrings 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.
*/
/**
* @param {string} s1
* @param {string} s2
* @return {boolean}
*/
var isScramble = function(s1, s2) {
const n = s1.length;
const dp = new Array(n).fill().map(() => new Array(n).fill().map(() => new Array(n).fill(null)));
function dfs(i1, j1, i2) {
if (dp[i1][j1][i2] !== null) {
return dp[i1][j1][i2];
}
if (i1 == j1) {
return dp[i1][j1][i2] = s1[i1] === s2[i2];
}
const j2 = j1 - i1 + i2;
let result = false;
for (let i = i1; i < j1; i++) {
result = result || (dfs(i1, i, i2) && dfs(i + 1, j1, i2 + i - i1 + 1))
|| (dfs(i1, i, j2 - i + i1) && dfs(i + 1, j1, i2));
}
return dp[i1][j1][i2] = result;
}
return dfs(0, n - 1, 0);
};