1639. Number of Ways to Form a Target String Given a Dictionary
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:
targetshould be formed from left to right.- To form the
ithcharacter ( 0-indexed ) oftarget, you can choose thekthcharacter of thejthstring inwordsiftarget[i] = words[j][k]. - Once you use the
kthcharacter of thejthstring ofwords, you can no longer use thexthcharacter of any string inwordswherex <= k. In other words, all characters to the left of or at indexkbecome unusuable for every string. - Repeat the process until you form the string
target.
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 formtarget 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 (" _a_ cca"), index 1 ("b _b_ bb"), index 3 ("cac _a_ ")
"aba" -> index 0 (" _a_ cca"), index 2 ("bb _b_ b"), index 3 ("cac _a_ ")
"aba" -> index 0 (" _a_ cca"), index 1 ("b _b_ bb"), index 3 ("acc _a_ ")
"aba" -> index 0 (" _a_ cca"), index 2 ("bb _b_ b"), index 3 ("acc _a_ ")
"aba" -> index 1 ("c _a_ ca"), index 2 ("bb _b_ b"), index 3 ("acc _a_ ")
"aba" -> index 1 ("c _a_ ca"), index 2 ("bb _b_ b"), index 3 ("cac _a_ ")Example 2:
Input: words = ["abba","baab"], target = "bab"
Output: 4
Explanation: There are 4 ways to form target.
"bab" -> index 0 (" _b_ aab"), index 1 ("b _a_ ab"), index 2 ("ab _b_ a")
"bab" -> index 0 (" _b_ aab"), index 1 ("b _a_ ab"), index 3 ("baa _b_ ")
"bab" -> index 0 (" _b_ aab"), index 2 ("ba _a_ b"), index 3 ("baa _b_ ")
"bab" -> index 1 ("a _b_ ba"), index 2 ("ba _a_ b"), index 3 ("baa _b_ ")Example 3:
Input: words = ["abcd"], target = "abcd"
Output: 1Example 4:
Input: words = ["abab","baba","abba","baab"], target = "abba"
Output: 16Constraints:
1 <= words.length <= 10001 <= words[i].length <= 1000- All strings in
wordshave the same length. 1 <= target.length <= 1000words[i]andtargetcontain only lowercase English letters.
# @lc code=start
using LeetCode
function num_ways(word::Vector{String}, target::String)
len_t, len_s, len_w = length(target), length(word[1]), length(word)
dp, cntr = fill(0, len_t, len_s), fill(0, len_s, 128)
for i in 1:len_s
for s in word
cntr[i, s[i] |> Int] += 1
end
end
for i in 1:len_s-len_t+1
dp[1, i] = cntr[i, target[1] |> Int]
end
for i in 2:len_t
acc = 0
for j in i:i+len_s-len_t
mul = cntr[j, target[i] |> Int]
acc += dp[i - 1, j - 1]
dp[i, j] = acc * mul % 1000000007
end
end
# display(dp)
sum(dp[len_t, len_t:end]) % 1000000007
end
# @lc code=endnum_ways (generic function with 1 method)
This page was generated using DemoCards.jl and Literate.jl.