|
||||||||||
StringTime Limit: 6000/3000 MS (Java/Others) Memory Limit: 524288/524288 K (Java/Others)Total Submission(s): 2689 Accepted Submission(s): 837 Problem Description Bob has a dictionary with N words in it. Now there is a list of words in which the middle part of the word has continuous letters disappeared. The middle part does not include the first and last character. We only know the prefix and suffix of each word, and the number of characters missing is uncertain, it could be 0. But the prefix and suffix of each word can not overlap. For each word in the list, Bob wants to determine which word is in the dictionary by prefix and suffix. There are probably many answers. You just have to figure out how many words may be the answer. Input The first line of the input gives the number of test cases T; T test cases follow. Each test case contains two integer N and Q, The number of words in the dictionary, and the number of words in the list. Next N line, each line has a string Wi, represents the ith word in the dictionary ($0 < |Wi| \leq 100000$) Next Q line, each line has two string Pi , Si, represents the prefix and suffix of the ith word in the list ($0 < |Pi|,|Si| \leq 100000, 0 < |Pi|+|Si| \leq 100000$) All of the above characters are lowercase letters. The dictionary does not contain the same words. Limits $T \leq 5$ $0 < N,Q \leq100000$ $\sum{Si +Pi} \leq 500000$ $\sum{Wi} \leq 500000$ Output For each test case, output Q lines, an integer per line, represents the answer to each word in the list. Sample Input
Sample Output
Source | ||||||||||
|