#AGC062F. [AGC062F] Preserve Distinct

[AGC062F] Preserve Distinct

Score : 20002000 points

Problem Statement

There are NN decks of cards, each card in which has an integer between 11 and MM, inclusive, written on it. The ii-th deck (1iN)(1\leq i \leq N) contains KiK_i cards, and the number written on the jj-th card from the top is Ai,j (1jKi)A_{i,j}\ (1\leq j \leq K_i).

Initially, the integers written on the cards satisfy the following conditions:

  • For each integer x (1xM)x\ (1\leq x \leq M), there are exactly two cards with xx written on them, each in a different deck.
  • The integers written on the top cards of all the decks are pairwise different.

We can perform the following operation on the NN decks:

  • Choose a deck that still has cards and discard the top card. After discarding, the integers written on the top cards of the decks that still have cards must remain pairwise different.

Determine the maximum number of times this operation can be performed.

Constraints

  • 2NM2 \leq N \leq M
  • 2M2×1052 \leq M \leq 2 \times 10^5
  • 1KiM1 \leq K_i \leq M
  • 1Ai,jM1 \leq A_{i,j} \leq M
  • For each integer x (1xM)x\ (1\leq x \leq M), there are exactly two pairs (i,j)(i,j) such that x=Ai,jx=A_{i,j}, and the two values of ii are different.
  • Ai,1 (1iN)A_{i,1}\ (1\leq i \leq N) are pairwise different.
  • All input values are integers.

Input

The input is given from Standard Input in the following format:

NN MM

K1K_1 A1,1A_{1,1} A1,2A_{1,2} \dots A1,K1A_{1,K_1}

K2K_2 A2,1A_{2,1} A2,2A_{2,2} \dots A2,K2A_{2,K_2}

\vdots

KNK_N AN,1A_{N,1} AN,2A_{N,2} \dots AN,KNA_{N,K_N}

Output

Print the answer.

2 4
4 1 2 3 4
4 3 2 1 4
1

If you initially perform the operation on the first deck, the numbers on the cards of this deck become 2,3,42, 3, 4 in order from the top. After this, you may not perform the operation again on the first deck because both the first and second decks would have 33 on their top cards. Similarly, you cannot perform the operation on the second deck either. Therefore, if you start by performing the operation on the first deck, you can only do it once.

Even if you start by performing the operation on the second deck, you can only do it once. Therefore, the answer is 11.

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

By operating properly, it is possible to discard all the cards.

3 3
2 1 2
2 2 3
2 3 1
0

There are cases when no operation can be performed.

12 40
4 35 39 11 21
7 31 29 16 15 30 32 34
4 21 27 38 40
11 17 28 26 23 33 22 3 36 8 1 20
1 30
4 40 38 24 6
8 8 36 9 10 5 7 20 4
10 5 10 9 3 22 33 23 26 28 17
4 15 16 29 31
11 19 13 12 18 25 2 39 35 7 14 37
3 4 1 14
13 24 27 11 2 25 18 12 13 19 32 37 6 34
53