CF1343F.Restore the Permutation by Sorted Segments

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

We guessed a permutation pp consisting of nn integers. The permutation of length nn is the array of length nn where each element from 11 to nn appears exactly once. This permutation is a secret for you.

For each position rr from 22 to nn we chose some other index ll ( l<rl < r ) and gave you the segment pl,pl+1,,prp_l, p_{l + 1}, \dots, p_r in sorted order (i.e. we rearranged the elements of this segment in a way that the elements of this segment are sorted). Thus, you are given exactly n1n-1 segments of the initial permutation but elements inside each segment are sorted. The segments are given to you in random order.

For example, if the secret permutation is p=[3,1,4,6,2,5]p=[3, 1, 4, 6, 2, 5] then the possible given set of segments can be:

  • [2,5,6][2, 5, 6]
  • [4,6][4, 6]
  • [1,3,4][1, 3, 4]
  • [1,3][1, 3]
  • [1,2,4,6][1, 2, 4, 6]

Your task is to find any suitable permutation (i.e. any permutation corresponding to the given input data). It is guaranteed that the input data corresponds to some permutation (i.e. such permutation exists).

You have to answer tt independent test cases.

输入格式

The first line of the input contains one integer tt ( 1t1001 \le t \le 100 ) — the number of test cases. Then tt test cases follow.

The first line of the test case contains one integer nn ( 2n2002 \le n \le 200 ) — the length of the permutation.

The next n1n-1 lines describe given segments.

The ii -th line contains the description of the ii -th segment. The line starts with the integer kik_i ( 2kin2 \le k_i \le n ) — the length of the ii -th segment. Then kik_i integers follow. All integers in a line are distinct, sorted in ascending order, between 11 and nn , inclusive.

It is guaranteed that the required pp exists for each test case.

It is also guaranteed that the sum of nn over all test cases does not exceed 200200 ( n200\sum n \le 200 ).

输出格式

For each test case, print the answer: n integers p1,p2,…,pn (1≤pi≤n, all pi should be distinct) — any suitable permutation (i.e. any permutation corresponding to the test case input).

输入输出样例

  • 输入#1

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

    输出#1

    3 1 4 6 2 5 
    3 2 1 4 5 
    2 1 6 3 5 4 7 
    1 2 
    2 5 3 4 1 
首页