CF1468M.Similar Sets

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

You are given nn sets of integers. The ii -th set contains kik_i integers.

Two sets are called similar if they share at least two common elements, i. e. there exist two integers xx and yy such that xyx \ne y , and they both belong to each of the two sets.

Your task is to find two similar sets among the given ones, or report that there is no such pair of sets.

输入格式

The first line contains a single integer tt ( 1t500001 \le t \le 50000 ) — the number of test cases. Then tt test cases follow.

The first line of each test case contains a single integer nn ( 2n1052 \le n \le 10^5 ) the number of given sets. The following nn lines describe the sets. The ii -th line starts with an integer kik_i ( 2ki1052 \le k_i \le 10^5 ) — the number of integers in the ii -th set. Then kik_i integers ai,1a_{i,1} , ai,2a_{i,2} , ..., ai,kia_{i,k_i} ( 1ai,j1091 \le a_{i,j} \le 10^9 ) follow — the elements of the ii -th set. It is guaranteed that all elements in each set are different.

The total number of elements in all sets in all test cases is not greater than 21052\cdot 10^5 .

输出格式

For each test case, print the answer on a single line.

If there is no pair of similar sets, print -1.

Otherwise, print two different integers — the indices of the similar sets. The sets are numbered from 11 to nn in the order they are given in the input. If there are multiple answers, print any of them.

输入输出样例

  • 输入#1

    3
    4
    2 1 10
    3 1 3 5
    5 5 4 3 2 1
    3 10 20 30
    3
    4 1 2 3 4
    4 2 3 4 5
    4 3 4 5 6
    2
    3 1 3 5
    3 4 3 2

    输出#1

    2 3 
    1 2 
    -1
首页