#abc289c. [abc289_c]Coverage

[abc289_c]Coverage

Problem Statement

There are MM sets, called S1,S2,dots,SMS_1, S_2, \\dots, S_M, consisting of integers between 11 and NN.
SiS_i consists of CiC_i integers ai,1,ai,2,dots,ai,Cia_{i, 1}, a_{i, 2}, \\dots, a_{i, C_i}.

There are (2M1)(2^M-1) ways to choose one or more sets from the MM sets.
How many of them satisfy the following condition?

  • For all integers xx such that 1leqxleqN1 \\leq x \\leq N, there is at least one chosen set containing xx.

Constraints

  • 1leqNleq101 \\leq N \\leq 10
  • 1leqMleq101 \\leq M \\leq 10
  • 1leqCileqN1 \\leq C_i \\leq N
  • $1 \\leq a_{i,1} \\lt a_{i,2} \\lt \\dots \\lt a_{i,C_i} \\leq N$
  • All values in the input are integers.

Input

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

NN MM C1C_1 a1,1a_{1,1} a1,2a_{1,2} dots\\dots a1,C1a_{1,C_1} C2C_2 a2,1a_{2,1} a2,2a_{2,2} dots\\dots a2,C2a_{2,C_2} vdots\\vdots CMC_M aM,1a_{M,1} aM,2a_{M,2} dots\\dots aM,CMa_{M,C_M}

Output

Print the number of ways to choose sets that satisfy the conditions in the Problem Statement.


Sample Input 1

3 3
2
1 2
2
1 3
1
2

Sample Output 1

3

The sets given in the input are $S_1 = \\lbrace 1, 2 \\rbrace, S_2 = \\lbrace 1, 3 \\rbrace, S_3 = \\lbrace 2 \\rbrace$.
The following three ways satisfy the conditions in the Problem Statement:

  • choosing S1,S2S_1, S_2;
  • choosing S1,S2,S3S_1, S_2, S_3;
  • choosing S2,S3S_2, S_3.

Sample Input 2

4 2
2
1 2
2
1 3

Sample Output 2

0

There may be no way to choose sets that satisfies the conditions in the Problem Statement.


Sample Input 3

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

Sample Output 3

18