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

문제

You are a manager of a match maker company ACM(Amazing Coupling Marriage) whose main role is to make happy matches between men and women.

N men and N women who are register ed to the company want to marry as soon as possible. Each man and each woman have a list of preferences for all the people of the opposite sex. The most preferable person will come at the first position in the list, the second preferable person will come a t the next, and so on. The table below shows a set of preference lists that might exist among 4 men and 4 women.

Your task is to make matches of all the men to all the women in such a way as to respect all their preferences as much as possible. However, you must assume that anyone assigned to someone other than their first choice will be disappointed and will always prefer anyone higher up on the list. If the N matches are chosen such that there exist a man and a woman who are not married on each other, but who would both prefer each other to their actual marriage partners, then the matches are said to be unstable. If no such pair exists, it is called stable. For example, a match “ M1W3 M2W1 M3W4 M4W2” is unstable because M1 prefers Wto W3, and Wprefers M1 to M2. The unstable couples might be separated easily after marriage; this is a definitely bad situation that you want to avoid.

In general, there are many different stable matches for a given set of preference lists. Your task is to print just one stable match among them.

입력

The input consists of T test cases. The number of test cases (T) is given in the first li ne of the input file. Each test case begins with a line containing an integer N less than 100 , indicating that N men and N women are given. The following N lines represent the men's preferences for the women, where the i-th line contains the preference list of a man with id i in order of preferences of the N women; he prefers a woman X to another woman Y if X precedes Y in the list. The following N lines represent the women's preferences for the N men. Assume that all men and all women have consecutive id-numbers from 1 to N .

출력

Print exactly one line for each test case . The line should contain a stable match for the test case. Each match should be represented as a sequence of the women’s id, according to the increasing order of men ’s id. The woman with the first id in the match is a partner of the man with id ‘1’, the woman with the second id in the match is a partner of the man with id ‘2’, and the woman with the i-th id in the match is a partner of the man with id ‘i ’. The consecutive women’s id in the match should be separated by a single space.

예제 입력 1

2
6
6 1 4 5 2 3
2 3 5 4 1 6
2 1 5 3 6 4
4 5 6 2 3 1
6 3 4 5 2 1
6 4 1 3 5 2
5 6 4 2 3 1
4 6 1 5 3 2
5 4 3 1 6 2
4 3 1 6 2 5
5 3 4 6 2 1
3 2 6 4 5 1
3
1 2 3
3 2 1
2 1 3
1 2 3
3 2 1
2 1 3

예제 출력 1

2 5 1 4 3 6
1 3 2