시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB88352734.615%

문제

We all know the famous game scrabble, where we want to make words using tiles. We will play a game with words. But it is reverse of scrabble. Here instead of making words we want to destroy them. It is a two player game.

The game starts with a dictionary of words. At each move, the current player chooses a word of his choice (not necessarily from the dictionary). The constraints for choosing the word is, it must match the prefix of any (one or more) of the current dictionary words.

When a player chooses a word as its move, all the dictionary words that has a prefix equal to the chosen word, are split into two parts:

  1. The matched part without the last character of the chosen word.
  2. The unmatched part starting from the last character of the chosen word.

We remove all the unmatched part from the dictionary and keep only the matched part in the dictionary. The words that don't have matched prefix with the chosen word are kept intact in the dictionary. In this situation the next player makes its move in the same fashion. If the chosen word is of length 1, then all the dictionary words starting with that character will be removed.

For example, if we have a dictionary consisting the following words:

bangladesh
bangalore
band
bandana

Now if the first player chooses the word “bang” then after the move the dictionary will become:
ban
ban
band
bandana

A player loses, when it cannot make a valid move. Given the dictionary of words, who will win if both players played optimally? To make it more interesting, can you find out who will win if you update the dictionary by adding new words?

Formally, you will be given few operations where you need to add a new word to the dictionary. After adding you need to calculate the winner between player 1 and 2 for the current dictionary. These added words are permanent. Means each of these added words will remain in the dictionary for that particular test case.

입력

First line consists of an integer T, which is the number of test cases (T ≤ 10).

Each case will start with an integer N (0 < N ≤ 50 000), the number of words in the dictionary.

Next N lines will contain dictionary words DW. Length of each DW will be less than or equal to 40.

Next line will contain an integer number Q, the number of operations (0 < Q ≤ 50 000).

Next Q lines will contain query words QW. Each QW is the word that you now want to add to the current dictionary. Let’s call these “Query words”. Length of each QW will be less than or equal to 40. All the dictionary words and query words will only consist of lower case letters.

출력

For each query word QW, you have to find out who will win, if you add QW to the current dictionary. First print the case number, then for each query print “1” or “2” based on whether player 1 or 2 will win.

예제 입력 1

2
4
bangladesh
bangalore
band
bandana
2
egg
apple
1
orange
2
cat
tiger

예제 출력 1

Case 1:
2
1
Case 2:
1
2