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

문제

While Bilbo has been developing a strategy for guessing the secret to the West gate of Puzzlia, Bombur the dwarf is getting antsy, and thinking “how hard can it be”, stands up in front of the door, and starts making guesses at random. Before anyone can stop him, he has already made 8 guesses (unsuccessfully as you might expect). Dwalin was able to write down some of the guesses (but not all) and the gate’s responses to those guesses. For example, if the guess was 1234, and the gate’s response was to light 1 circle, Dwalin recorded it as: <1234 : 1 Circle>

Since the 10th guess must be the correct one, there is now only one guess that can be made with which to find more information about the secret number. Bilbo would like your help in that. Specifically, given up to 8 guess-response pairs, you are to first decide if there is already sucient information to identify the secret correctly. If yes, you are to output the secret. However, if not: you are also to decide whether you can use the remaining guess to elicit sucient information to identify the secret.

For example, if Dwalin had only recorded one guess-response pair, say <1234 : 1 Circle>, there are too many possibilities left to be able to identify the correct secret with just one more guess. On the other hand, given the guess-response pairs: <5888 : 3 Circles>, <1234 : >, <4567 : >, we can deduce that there are only three possibilities for the secret word: 0888, 8888, and 9888. There are several guesses that can uniquely identify the secret. For example, if we were to guess 0988 next, we will get different answers depending upon the secret. If the secret were 0888, we would get <0988 : 3 circles>, but for the other two, we would get: <0988 : 2 circles>, and <0988 : 2 circles, 1 square> respectively. Thus, the response of the gate would enable us to identify the secret. Note that, none of the remaining possibilities are good guesses in this situation: if we were to guess 0888, and if the gate’s response were 3 circles, we wouldn’t know the secret..

There are several other guesses that can uniquely identify the secret, e.g., 0898, 0889, 0009. In such cases, you should output the one that is numerically the smallest. In this case, the output should be 0009.

입력

The first line in the test data file contains the number of test cases (≤ 1000). After that, each line contains one test case: the first number is the number of guess-response pairs recorded, n (0 < n ≤ 8), and the next 3n numbers denote the triples: <guess, num circles, num squares>. Note that the guesses are implicitly padded with 0’s. For example, if one of the guesses is 1, it needs to be treated as 0001.

출력

For each test case, you need to distinguish between three cases: the given guess-response pairs are sucient to deduce the secret correctly (CASE SUFFICIENT TO GUESS SECRET), there is one more guess that can uniquely identify the secret (CASE ONE ADDITIONAL GUESS SUFFICIENT), or there is not sucient information to find the secret with one more guess (CASE INSUFFICIENT INFORMATION). In the first and second cases, the secret and the guess should be output respectively. If there are multiple choices for the guess, you should output the one that is numerically the first. Exact format shown below.

출력 형식

정확한 출력 형식은 제출에서 언어를 Java로 설정하면 확인할 수 있다.

예제 입력 1

3
1	1234 1 0 
3	5888 3 0  	1234 0 0  	4567 0 0  
4	5888 3 0  	1234 0 0  	4567 0 0  	0009 0 0

예제 출력 1

There is no guess that can uniquely identify the secret.
There is a guess that can uniquely identify the secret: 0009
The secret is: 8888