LeetCode in Kotlin

30. Substring with Concatenation of All Words

Hard

You are given a string s and an array of strings words. All the strings of words are of the same length.

A concatenated substring in s is a substring that contains all the strings of any permutation of words concatenated.

Return the starting indices of all the concatenated substrings in s. You can return the answer in any order.

Example 1:

Input: s = “barfoothefoobarman”, words = [“foo”,”bar”]

Output: [0,9]

Explanation:

Since words.length == 2 and words[i].length == 3, the concatenated substring has to be of length 6.

The substring starting at 0 is “barfoo”. It is the concatenation of [“bar”,”foo”] which is a permutation of words.

The substring starting at 9 is “foobar”. It is the concatenation of [“foo”,”bar”] which is a permutation of words.

The output order does not matter. Returning [9,0] is fine too.

Example 2:

Input: s = “wordgoodgoodgoodbestword”, words = [“word”,”good”,”best”,”word”]

Output: []

Explanation:

Since words.length == 4 and words[i].length == 4, the concatenated substring has to be of length 16.

There is no substring of length 16 is s that is equal to the concatenation of any permutation of words.

We return an empty array.

Example 3:

Input: s = “barfoofoobarthefoobarman”, words = [“bar”,”foo”,”the”]

Output: [6,9,12]

Explanation:

Since words.length == 3 and words[i].length == 3, the concatenated substring has to be of length 9.

The substring starting at 6 is “foobarthe”. It is the concatenation of [“foo”,”bar”,”the”] which is a permutation of words.

The substring starting at 9 is “barthefoo”. It is the concatenation of [“bar”,”the”,”foo”] which is a permutation of words.

The substring starting at 12 is “thefoobar”. It is the concatenation of [“the”,”foo”,”bar”] which is a permutation of words.

Constraints:

Solution

class Solution {
    fun findSubstring(s: String, words: Array<String>): List<Int> {
        val ans: MutableList<Int> = ArrayList<Int>()
        val n1 = words[0].length
        val n2 = s.length
        val map1: MutableMap<String, Int> = HashMap<String, Int>()
        for (ch in words) {
            map1.put(ch, map1.getOrDefault(ch, 0) + 1)
        }
        for (i in 0..<n1) {
            var left = i
            var j = i
            var c = 0
            val map2: MutableMap<String, Int> = HashMap<String, Int>()
            while (j + n1 <= n2) {
                val word1 = s.substring(j, j + n1)
                j += n1
                if (map1.containsKey(word1)) {
                    map2.put(word1, map2.getOrDefault(word1, 0) + 1)
                    c++
                    while (map2[word1]!! > map1[word1]!!) {
                        val word2 = s.substring(left, left + n1)
                        map2.put(word2, map2[word2]!! - 1)
                        left += n1
                        c--
                    }
                    if (c == words.size) {
                        ans.add(left)
                    }
                } else {
                    map2.clear()
                    c = 0
                    left = j
                }
            }
        }
        return ans
    }
}