You are given a dictionary ‘D’ consisting of ‘N’ words. Each word of the dictionary is of fixed size ‘L’ and contains only lowercase English alphabets.
Now you have to answer ‘Q’ queries, in each query you are given a word ‘W’ of fixed size ‘L’ but this word can consist of either lowercase English alphabets or ‘?’ (wildcard characters). Where ‘?’ can be matched by any lowercase English alphabet.
For each query find how many words in the dictionary can be matched by the query word ‘W’ by replacing ‘?’(if present) with some lowercase English alphabet.
Example :
If the dictionary is: {"cat", "rat", "bat", "hat"}
And query words are "?at" and "b?t", then:
"?at" => can be matched by all the 4 dictionary words by replacing '?' with 'c', 'r', 'b' or 'h'.
"b?t" => can only be matched by the dictionary word "bat" by replacing '?' with 'a'.
The first line contains a single integer ‘T’ denoting the number of test cases. Then each test case follows.
The first line of each test case contains two integers ‘N’ and ‘L’, where N denotes the number of words in the dictionary and L denotes the length of words in the dictionary and queries.
The next line contains N words each of size L, denoting the words in the dictionary.
The next line contains a single integer ‘Q’ denoting the number of queries.
The following Q lines, each contains a word ‘W’ of size L, denoting the query word.
Output Format :
For each test case print Q integers in a separate line, each denoting the number of dictionary words that can be matched by the query word.
Output for each test case will be printed in a separate line.
Note :
You are not required to print anything; it has already been taken care of. Just implement the function.
1 <= T <= 10
1 <= N <= 100
1 <= L <= 7
1 <= Q <= 100
1 <= word.size <= L
Time limit: 1 sec
2
5 3
cat
map
bat
man
pen
4
?at
ma?
?a?
??n
1 5
aaaaa
1
bbbbb
2
2
4
2
0
For test case 1 :
Query1: “?at” matches with “cat” and “bat”
Query2: “ma?” matches with “map” and “man”
Query3: “?a?” matches with “cat”, “bat”, “map” and “man”
Query4: “??n” matches with “man” and “pen”
For test case 2 :
Query1: “bbbbb” doesn’t matches with any dictionary words
2
5 3
cat
map
bat
man
pen
4
cat
ma?
?a?
pen
2 5
aaaaa
bbbbb
1
bbbbb
1
2
4
1
1
Try generating all possible words that can be formed from the word given in the query.
Store the dictionary words in a hash-map for a constant lookup time, now for each query word, try replacing each ‘?’ with every possible lowercase alphabet and generating all possible words that can be formed by the query word, for each of them: search whether it exists in the dictionary or not.
The steps are as follows:
O( Q * L^26 ), where ‘Q’ is the number of queries and ‘L’ is the size of the word.
For each query, in the worst condition the word of size ‘L’ contains only ‘?’, this will result in generating L^26 possible words using backtracking. Hence the time complexity is O(Q * L^26)
O(N), where ‘N’ is the size of the dictionary.
A Hash-map of size equal to ‘N’ is created to store the words in the dictionary. Hence the space complexity is O(N).