CF1819D.Misha and Apples

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Schoolboy Misha got tired of doing sports programming, so he decided to quit everything and go to the magical forest to sell magic apples.

His friend Danya came to the magical forest to visit Misha. What was his surprise when he found out that Misha found a lot of friends there, the same former sports programmers. And all of them, like Misha, have their own shop where they sell magic apples. To support his friends, who have changed their lives so drastically, he decided to buy up their entire assortment.

The buying process works as follows: in total there are nn stalls, numbered with integers from 11 to nn , and mm kinds of magic apples, numbered with integers from 11 to mm . Each shop sells some number of kinds of apples. Danya visits all the shops in order of increasing number, starting with the first one. Upon entering the shop he buys one magic apple of each kind sold in that shop and puts them in his backpack.

However, magical apples wouldn't be magical if they were all right. The point is that when two apples of the same type end up together in the backpack, all of the apples in it magically disappear. Importantly, the disappearance happens after Danya has put the apples in the backpack and left the shop.

Upon returning home, Danya realized that somewhere in the forest he had managed to lose his backpack. Unfortunately, for some shops Danya had forgotten what assortment of apples there was. Remembering only for some shops, what kinds of magical apples were sold in them, he wants to know what is the maximum number of apples he could have in his backpack after all his purchases at best.

输入格式

Each test consists of multiple test cases. The first line contains a single integer tt ( 1t21051 \le t \le 2 \cdot 10^5 ) —the number of test cases. The description of test cases follows.

The first line contains two integers nn and mm ( 1n,m21051 \leq n, m \leq 2 \cdot 10^5 ) —the number of stalls and kinds of apples.

Each of the following nn lines describes the assortment of the next stall in the format described below.

Each line starts with an integer kik_i ( 0ki21050 \le k_i \le 2 \cdot 10^5 ). This is followed by kik_i of different integers aija_{ij} ( 1aijm1 \le a_{ij} \le m ) —the kinds of apples sold in the ii -th stall. If ki=0k_i = 0 , then Danya does not remember what assortment was in that shop, and the set of apple kinds can be anything (including empty).

It is guaranteed that the sum of all kik_i over all test cases does not exceed 21052 \cdot 10^5 and the sum of nn over all test cases does not exceed 21052 \cdot 10^5

输出格式

For each test case, output a single integer — the maximum number of apples that could be in Dani's backpack after visiting all the shops at best.

输入输出样例

  • 输入#1

    4
    3 4
    2 1 2
    2 4 1
    2 1 2
    4 4
    2 1 2
    2 3 4
    0
    1 1
    2 5
    0
    0
    5 3
    0
    3 1 2 3
    2 3 1
    0
    1 3

    输出#1

    2
    1
    5
    3

说明/提示

In the first test case, Danya remembers all the shops, so the process will be deterministic. He will take two apples at the first shop and two more at the second, but after he puts them in his backpack, they will disappear. So at the end there will only be 22 apples left, which he will take at the third shop.

In the second test case, if the third shop is empty, then after visiting the fourth shop all the apples will disappear. In any other case the apples will disappear after the third shop, and in the fourth shop Dan can take one apple, so the answer is 11 .

In the third test case, the first shop may sell all kinds of apples, and the second shop may sell nothing. Then all 55 apples will be left at the end.

首页