F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

Message

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 515    Accepted Submission(s): 149


Problem Description
When little Sascha grew up, she lost her bad habit of pronouncing words in ways that were most easy for her, but did not always match the correct-pronunciation. However, she never lost the linguistic creativity she used to show as a little girl. When the Earth Allied Forces (EAF) discovered she also had brilliant mathematical insights and a knack for puzzles and secret messages,she was immediately offered the position of Head of the EAF Intelligence Department.

Sascha's current task is interpreting intercepted internal messages of the hostile Mars Feder-ation. Although Martian messages always consist of just one word, her task turns out not to be easy, as two factors in uence the content of the intercepted message:

a) Extraterrestrial environment conditions are so bad that errors can occur in intercepted messages, causing them to be quite obfuscated compared to the originally sent text. If such errors occur, the erroneous characters will be characters from the Martian alphabet, just as the original characters.

b) Furthermore, linguistic characteristics play an important role. In Martian, there are relations between two subsequent characters: for a given character, some characters are more likely predecessors than others (note that something similar occurs in English: for example, a `h' in a word will more likely have been preceded by a 't' than by a `q').

Fortunately, probabilities that a received character y actually was sent as an original Martian character x is known for all alphabet characters, as well as the probabilities that a certain character xi occurs in a clean Martian word if it was preceded by a Martian character x(i-1).

Given all these probabilities, Sascha wants to nd the so-called maximum likelihood text for a received message, which is the most likely message the Martians originally sent. As senior pro-grammer in the EAF Intelligence Department, you must write a program for her, achieving this goal for several intercepted messages in several local Martian dialects.

To give a simple example, consider a local Martian alphabet only consisting of the characters ¡®a¡¯ and ¡®b¡¯ and let the receiving error probabilities and character succession probabilities be as shown in Table 2. If the intercepted message just consists of an `a', this can either originally have been an `a' or a `b'. With no previous characters available, only the error probabilities are considered: it then turns out that the maximum likelihood message is an `a' as well, with probability 0.9.


Table 2: Example Receiving Error Probabilities (left) and Character Succession Probabilities(right).


To extend the example, if the intercepted message was `ab', we also need the character succession probabilities. The probability that the original message was `aa' is

p(received `a' indeed was originally sent as `a')

*p(received 'b' was originally sent as `a') *p(character `a' succeeds previous `a')

= 0.9 * 0.1 * 0.8:


Similarly, the probability that the original message was `bb', `ab' or `ba' are 0.1 * 0.9 * 0.95, 0.9* 0.9 * 0.05 and 0.1 * 0.1 *0.2, respectively. Hence, the maximum likelihood message now is `bb'. In all cases asked for, there will always be a unique maximum likelihood message.
 

Input
The _rst line of input consists of the integer number n, the number of test cases;

Then, for each test case:

- An integer number a (0 < a < 30), which is the number of characters in the local Martian alphabet;

- A line containing the a unique characters c1; c2; ..... ; ca of the local Martian alphabet,separated by single spaces. Whitespace characters will not occur in the alphabet;
- a lines, specifying receiving error probabilities for the a alphabet characters in the orderin which they were presented. The ith line corresponds to the error probabilities for the original alphabet character ci and contains:

* a floating point numbers ei1; ei2; .....; eia, separated by single spaces. Number eij(0 <=eij <= 1) indicates the probability that an observed character cj originally was sent as the character ci (hence );

- a lines, specifying character succession probabilities for the a alphabet characters in theorder in which they were presented. The ith line corresponds to the character succession probabilities for cases where the original alphabet character ci was the immediate predecessor and contains:

* a floating point numbers si1; si2; .... ; sia, separated by single spaces. Number sij indicates the probability that a certain character cj has character ci as immediate predecessor (hence );

- An integer number w (0 < w < 50), indicating the number of intercepted messages in the local Martian alphabet specified;

- Then, for each intercepted message:

- A line containing the intercepted message. These messages are non-empty, case-sensitive and will not exceed 300 characters in length.

Given _oating point numbers never have more than 10 decimal numbers following the separator '.'
 

Output
For each message in each test case, the output will consist of a single line with a single string: the maximum likelihood original Martian message given the intercepted message.
 

Sample Input
1 2 a b 0.9 0.1 0.1 0.9 0.8 0.05 0.2 0.95 2 a ab
 

Sample Output
a bb
 

Source
 

Statistic | Submit | Discuss | Note
Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-04-26 07:16:35, Gzip enabled