Problem B
Car Game
Task
For each set of three letters find the first word in a dictionary that contains these letters in the same order.
Input
The first line of input contains two positive integers $N \leq 5\, 000$ and $M \leq 10\, 000$, the number of words in the dictionary and the number of license plates to be handled. Each of the following $N$ lines contains a word from the dictionary, a string no more than $100$ characters long containing only lower case letters from the English alphabet. This is followed by $M$ lines each containing a string of three uppercase letters from the English alphabet, representing a license plate.
Output
For each license plate in the input you should output one line containing either the first valid word in the dictionary or the sentence “No valid word” if no such word exists.
Sample Input 1 | Sample Output 1 |
---|---|
5 3 banana car sand uncharacteristically counterrevolutionaries RRR DNA SND |
counterrevolutionaries No valid word sand |