시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB533100.000%

문제

MasterMind is a game that was created by a telecommunication engineer named Mordechai Meirovitz, from Romania, in 1971. The game was awarded the prestigious “The Year’s Game” in 1974 and was a huge commercial success, having been sold in more than 40 countries.

MasterMind is a logical game in which your objective as a player is to find out a secret password chosen by an opponent player. The password to be found is a sequence of characters from a given alphabet. In order to find out what the password is, you submit “guesses” to your opponent. A guess is a possible password. That is, a guess is a sequence of the same number of characters as the password, from the same alphabet.

After each guess you receive an answer, which consists of two integers, (E, G), indicating how good your guess was. If a character in a guess exists in the password at the same position (in the string) then it counts as “excellent” (E). Otherwise if a character exists in both the guess and the password, but in a different position in the string, then it counts as “good” (G). A single character from a guess is not counted twice (that is, if it is counted as excellent it is not counted as good). The table below illustrates some examples.

Password Guess Answer Remark
1233 3243 (2, 1) ‘2’ and the second ‘3’ are at the same position in both the pass- word and guess, and because the first ‘3’ also exists in the pass- word, but in another position.
1233 3000 (0, 1) The only coincident character in both the password and the guess is the ‘3’, but in different positions.
1233 4455 (0, 0) ‘4’ and ‘5’ are not present in the password.
1233 1233 (4, 0) Right!


Based on the answers received after each guess, a player can eventually deduce what the password is. The goal of the game is to find out the password with the minimum number of guesses.

You must write a program to help you to find the password, showing all deduced positions after a set of guesses and answers.

입력

The input contains several test cases. The first line of a test case contains three integers N, L and K. N indicates the number of guesses (0 ≤ N ≤ 1000), L indicates the length of the password (1 ≤ L ≤ 4) and K indicates the size of the alphabet used (1 ≤ K ≤ 18). The next line contains K characters that can be digits (‘0’ to ‘9’) or capital letters (‘A’ to ‘Z’), specifying the alphabet used in the password. The following N lines contain each a guess and an answer. A guess is a sequence of L characters from the alphabet used. An answer is composed by two integers E and G, (respectively the excellency and goodness of the guess, as explained above). The end of input is indicated by N = L = K = 0.

The input must be read from standard input.

출력

For each test case in the input file your program must print one single line containing the information deduced from the set of guesses and answers. If it is possible to deduce the entire password from the set of guesses and answers, then your program should print the password. Otherwise, it should print a character ‘?’ in each non-deduced position of the password, as shown in the examples.

The output must be written to standard output.

예제 입력 1

3 4 2
AB
AAAA 1 0
BBBB 3 0
ABAB 3 0
4 4 2
12
1111 1 0
2222 3 0
1212 3 0
2211 3 0
1 2 3
123
32 1 1
0 0 0

예제 출력 1

?B?B
2212
??