Interleaving String


Problem

Given strings s1s1, s2s2, and s3s3, find whether s3s3 is formed by an interleaving of s1s1 and s2s2.

An interleaving of two strings ss and tt is a configuration where ss and tt are divided into nn and mm substrings respectively, such that:

  • s=s1+s2+...+sns = s_1 + s_2 + ... + s_n
  • t=t1+t2+...+tmt = t_1 + t_2 + ... + t_m
  • nm1|n - m| \leq 1
  • The interleaving is either
    • s1+t1+s2+t2+s3+t3+...s_1 + t_1 + s_2 + t_2 + s_3 + t_3 + ...
    • t1+s1+t2+s2+t3+s3+...t_1 + s_1 + t_2 + s_2 + t_3 + s_3 + ...

Note: a+ba + b is the concatenation of strings aa and bb

Example

interleave example

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.
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.
Input: s1 = "", s2 = "", s3 = ""
Output: true

Constraints

  • 0s1.length,s2.length1000 \leq s1.length,s2.length \leq 100
  • 0s3.length2000 \leq s3.length \leq 200

Submit your solution at here

Solution

Approach

  • We use an array ff, where f(i,j)f(i,j) denotes if we can use s1[0,i]s1[0,i] and s2[0,j]s2[0,j] to form a valid string
    • By that definition, we have, f(0,0)=truef(0,0) = true, use 0 char from s1, 0 char from s2, we can form an empty string
  • Calculate f(i,j)f(i,j), we have 2 posibility
    • If we use s1[i]s1[i] to form s3s3, f(i,j)=f(i1,j)f(i,j) = f(i-1,j)
    • If we use s2[j]s2[j] to form s3s3, f(i,j)=f(i,j1)f(i,j) = f(i,j-1)

Complexity

  • Time complexity: O(n×m)O(n\times m)
  • Space complexity: O(n×m)O(n\times m), with a little optimization, we can have O(m)O(m)

Code

O(mn)O(mn) space

impl Solution {
    pub fn is_interleave(s1: String, s2: String, s3: String) -> bool {
        let s1 = s1.as_bytes();
        let s2 = s2.as_bytes();
        let s3 = s3.as_bytes();
        let n = s1.len();
        let m = s2.len();
        let nm = s3.len();
        if n+m != nm {
            return false;
        }
        let mut f = vec![vec![false;m+1];n+1];
        for i in 0..=n {
            for j in 0..=m {
                f[i][j] = (i == 0 && j == 0) ||
                    (i > 0 && f[i-1][j] && s1[i-1] == s3[i+j-1]) ||
                    (j > 0 && f[i][j-1] && s2[j-1] == s3[i+j-1]);
            }
        }
        return f[n][m];
    }
}

O(m)O(m) space

impl Solution {
    pub fn is_interleave(s1: String, s2: String, s3: String) -> bool {
        let s1 = s1.as_bytes();
        let s2 = s2.as_bytes();
        let s3 = s3.as_bytes();
        let n = s1.len();
        let m = s2.len();
        let nm = s3.len();
        if n+m != nm {
            return false;
        }
        let mut f = vec![false;m+1];
        for i in 0..=n {
            for j in 0..=m {
                f[j] = (i == 0 && j == 0) ||
                    (i > 0 && f[j] && s1[i-1] == s3[i+j-1]) ||
                    (j > 0 && f[j-1] && s2[j-1] == s3[i+j-1]);
            }
        }
        return f[m];
    }
}
Made with love using Svelte, Three.js