LeetCode in Kotlin

1639. Number of Ways to Form a Target String Given a Dictionary

Hard

You are given a list of strings of the same length words and a string target.

Your task is to form target using the given words under the following rules:

Notice that you can use multiple characters from the same string in words provided the conditions above are met.

Return the number of ways to form target from words. Since the answer may be too large, return it modulo 109 + 7.

Example 1:

Input: words = [“acca”,”bbbb”,”caca”], target = “aba”

Output: 6

Explanation: There are 6 ways to form target.

“aba” -> index 0 (“acca”), index 1 (“bbbb”), index 3 (“caca”)

“aba” -> index 0 (“acca”), index 2 (“bbbb”), index 3 (“caca”)

“aba” -> index 0 (“acca”), index 1 (“bbbb”), index 3 (“acca”)

“aba” -> index 0 (“acca”), index 2 (“bbbb”), index 3 (“acca”)

“aba” -> index 1 (“caca”), index 2 (“bbbb”), index 3 (“acca”)

“aba” -> index 1 (“caca”), index 2 (“bbbb”), index 3 (“caca”)

Example 2:

Input: words = [“abba”,”baab”], target = “bab”

Output: 4

Explanation: There are 4 ways to form target.

“bab” -> index 0 (“baab”), index 1 (“baab”), index 2 (“abba”)

“bab” -> index 0 (“baab”), index 1 (“baab”), index 3 (“baab”)

“bab” -> index 0 (“baab”), index 2 (“baab”), index 3 (“baab”)

“bab” -> index 1 (“abba”), index 2 (“baab”), index 3 (“baab”)

Constraints:

Solution

class Solution {
    fun numWays(words: Array<String>, target: String): Int {
        val counts = precompute(words)
        val memo = Array(target.length) { arrayOfNulls<Int?>(words[0].length) }
        return solve(memo, counts, words, target, 0, 0)
    }

    private fun precompute(words: Array<String>): Array<IntArray> {
        val counts = Array(words[0].length) { IntArray(26) }
        for (word in words) {
            for (idx in word.indices) {
                counts[idx][word[idx].code - 'a'.code]++
            }
        }
        return counts
    }

    private fun solve(
        memo: Array<Array<Int?>>,
        counts: Array<IntArray>,
        words: Array<String>,
        target: String,
        idx: Int,
        len: Int
    ): Int {
        if (idx >= target.length) {
            return 1
        }
        if (len >= words[0].length || words[0].length - len < target.length - idx) {
            return 0
        }
        if (memo[idx][len] != null) {
            return memo[idx][len]!!
        }
        var answer = 0
        answer += solve(memo, counts, words, target, idx, len + 1)
        answer %= MOD
        answer += (
            solve(
                memo,
                counts,
                words,
                target,
                idx + 1,
                len + 1
            ).toLong() * counts[len][target[idx].code - 'a'.code] %
                MOD
            ).toInt()
        answer %= MOD
        memo[idx][len] = answer
        return memo[idx][len]!!
    }

    companion object {
        private const val MOD = 1e9.toInt() + 7
    }
}