printРабочее место участника

printЗадачи

1358. Soundex Indexing

Ограничения: время – 200ms/500ms, память – 64MiB Ввод: input.txt или стандартный ввод Вывод: output.txt или стандартный вывод copy
Послать решение Blockly Посылки Темы Где Обсудить (0)

The Soundex Index System was developed so that similar sounding names, or names with similar spelling could be encoded for easy retrieval. It has been used by the U.S. Bureau of the Census, and some States use it to help encode your driver's license number. Your task is to read a sequence of names, one at a time and one per line, compute the corresponding soundex code, and write to the output file the name and its soundex code (one line of output per name).
Names will contain from 1 to 20 upper case, alphabetic characters (ASCII values 65 thru 90, inclusive). Names shorter than 20 characters will not be padded with blanks. Thus a name will consist of upper case letters only.
A Soundex Code always consists of a letter followed by three digits. Here are the rules for soundex encoding:
  • The first letter of a name appears as the first and only letter in the soundex code.
  • The letters A, E, I, O, U, Y, W and H are never encoded, but do break successive code sequences (see next rule).
  • All other letters are encoded except when they immediately follow a letter (including the first letter) that would be encoded with the same code digit.
  • The soundex code guide is:
    CodeKey Letters and Equivalents
    1B, P, F, V
    2C, S, K, G, J, Q, X, Z
    3D, T
    4L
    5M, N
    6R
  • Trailing zeros are appended to short codes so all names are encoded with a letter followed by three digits.
  • Longer codes are truncated after the third digit.
Input
The input file contains a list of names, one per line. Each name will not exceed 20 characters, and you may assume that only upper case letters will be used. Your program should continue to read names until the end of the file is detected.
Output
The output written to the file should consist of a column of names and a column of their corresponding soundex codes. Write the headings "NAME" and "SOUNDEX CODE" in the first line of the output file in columns 10 and 35, respectively. After the heading line, the names and soundex codes should be written (one pair per line) with the name starting in column 10 and the soundex code beginning in column 35.

Sample Input

LEE
KUHNE
EBELL
EBELSON
SCHAEFER
SCHAAK

Sample Output

         NAME                     SOUNDEX CODE
         LEE                      L000
         KUHNE                    K500
         EBELL                    E140
         EBELSON                  E142
         SCHAEFER                 S160
         SCHAAK                   S200
loading