CF1931F.Chat Screenshots

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There are nn people in the programming contest chat. Chat participants are ordered by activity, but each person sees himself at the top of the list.

For example, there are 44 participants in the chat, and their order is [2,3,1,4][2, 3, 1, 4] . Then

  • 11 -st user sees the order [1,2,3,4][1, 2, 3, 4] .
  • 22 -nd user sees the order [2,3,1,4][2, 3, 1, 4] .
  • 33 -rd user sees the order [3,2,1,4][3, 2, 1, 4] .
  • 44 -th user sees the order [4,2,3,1][4, 2, 3, 1] .

kk people posted screenshots in the chat, which show the order of participants shown to this user. The screenshots were taken within a short period of time, and the order of participants has not changed.

Your task is to determine whether there is a certain order that all screenshots correspond to.

输入格式

The first line contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of input test cases. The descriptions of test cases follow.

The first line of the description of each test case contains two integers nn and kk ( 1kn2105,nk21051 \le k \le n \le 2 \cdot 10^5, n \cdot k \le 2 \cdot 10^5 ) — the number of chat participants and the number of participants who posted screenshots.

The following kk lines contain descriptions of screenshots posted by the participants.

The ii -th row contains nn integers aija_{ij} each ( 1aijn1 \le a_{ij} \le n , all aija_{ij} are different) — the order of participants shown to the participant ai0a_{i0} , where ai0a_{i0} — the author of the screenshot. You can show that in the screenshot description it will always be at the top of the list.

It is guaranteed that the sum of nkn \cdot k for all test cases does not exceed 21052 \cdot 10^5 . It is also guaranteed that all the authors of the screenshots are different.

输出格式

Output tt lines, each of which is the answer to the corresponding test case. As an answer, output "YES" if there exists at least one order of participants, under which all kk screenshots could have been obtained. Otherwise, output "NO".

You can output the answer in any case (upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive responses.

输入输出样例

  • 输入#1

    10
    5 1
    1 2 3 4 5
    4 4
    1 2 3 4
    2 3 1 4
    3 2 1 4
    4 2 3 1
    6 2
    1 3 5 2 4 6
    6 3 5 2 1 4
    3 3
    1 2 3
    2 3 1
    3 2 1
    10 2
    1 2 3 4 5 6 7 8 9 10
    10 9 8 7 6 5 4 3 2 1
    1 1
    1
    5 2
    1 2 3 5 4
    2 1 3 5 4
    3 3
    3 1 2
    2 3 1
    1 3 2
    5 4
    3 5 1 4 2
    2 5 1 4 3
    1 5 4 3 2
    5 1 4 3 2
    3 3
    1 3 2
    2 1 3
    3 2 1

    输出#1

    YES
    YES
    YES
    YES
    NO
    YES
    YES
    YES
    YES
    NO
首页