|
|||
Touchscreen KeyboardNowadays, people do not use hardware keyboards but touchscreens. Usually, they touch on the wrong letters with their chunky fingers because screen space is precious, and the letters are therefore too small. Usually, a spell checker runs after typing a word and suggests other words to select the correct spelling from. Your job is to order that list so that more likely words are on top. The typical touchscreen keyboard looks like this:
You should use the distance between the letters when typing a word: the distance is the sum
of the horizontal and vertical distances between the typed and the proposed letters. Assume
you typed a
The typed word and the words in the list of the spell checker all have the same length. The
distance between two words is the sum of the distances of their respective letters. So the
distance between Input Specification
The first line of the input specifies the number of test cases t
(0 < t < 20). Each test case starts with a string and an
integer l in one line. The string gives the word that was typed using the
touchscreen keyboard, while l specifies the number of entries in the spell checker
list (0 < l ≤ 10). Then follow l lines, each
with one word of the spell checker list. You may safely assume that all words of one test
case have the same length, and no word is longer than 10 000 characters (which are only
lowercase English letters from ' Output SpecificationFor each test case, print the list of words sorted by their distance from the typed word ascending. If two words have the same distance, sort them alphabetically. Print the distance of each word in the same line (after a space). Sample Input
Output for Sample Input
|
|||
University of Debrecen; Faculty of Informatics; v. 09/30/2024 |