#Lutece0433. Transcript
Transcript
Migrated from Lutece 433 Transcript
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
A company wants to hire a new employee. The selection process consists of several attention tests, one of them consists in: each candidate must type each character he sees in a flashing screen, using a given keyboard. You are asked to write down a program to score the candidates, given the original sequence of characters, and what the candidate actually typed. Scoring is based on the kind of actions the candidate may perform. For each character flashing in the screen, she may only:
- Correctly type the character;
- Omit the character;
- By mistake, type a different character.
The score or penalty given to each action depends on the keyboard layout considered. The keyboard is a matrix of rows and columns.
The distance between the characters at coordinates and is given by the maximum of and . For example, in the keyboard below ( rows by columns), the distance between the character a
, at , and the character h
at is , and the distance between the character o
and h
is . In this example, the largest distance between any two characters is . For any keyboard the largest distance between any two characters is conventionally referred to by .
The score given to the correct transcription of one character is . The penalty given for the omission of one character (action ) is . The score given for changing a character for another (action ) is minus the distance between the two characters involved in the mistake. For example, considering the keyboard shown above, the following action scores apply: Score for the correct transcript of one character: ; Penalty for the omission of one character: ; Score for changing character o
to character h
: .
A scoring of a test is the sum of the scores given to each character typed minus the sum of the penalties for each character omitted. Since the scoring is only done after the test finishes, it is not possible to be sure about when specific actions were realized (e.g, did the candidate skip a character, or mistyped it?). To avoid complaints, the final score given is the highest possible value for scoring the candidate, according to the rules explained above. For example, if the text to transcribe is time
and the candidate types yme
, we may score it in several ways:
- To omit
t
, changei
fory
and correctly transcribem
ande
; - To change
t
fory
, omiti
and correctly transcribem
ande
; - To change
t
fory
, changei
form
, omitm
and correctly transcribee
; - To change
t
fory
, changei
form
, changem
fore
and omite
.
Each one of these possibilities has one score associated ( and points, respectively). Thus, the candidate’s final score is points. Write a program that, considering the shape of a keyboard, the text to be transcribed by the candidate, and the actual transcript produced by the candidate returns the final score of the candidate.
Input
The input file contains several test cases, each of them as described below. The first line contains an integer , stating the number of rows in the keyboard. The next lines, all with the same length, contain a string with the sequence of characters in the corresponding keyboard row. The keyboard will not have more than rows and columns. Then, the next two lines contain the text to be transcribed by the candidate, and the text typed by the candidate. These texts will be no longer than characters each.
Output
For each test case, a single line containing an integer stating the final score of the candidate.
Samples
3
egyim
anows
uflth
time
yme
9
Resources
Southwestern 2006-2007