2210.Black Widow

Time Limit: 1s Memory Limit: 256MB

Natalia Romanova is trying to test something on the new gun S.H.I.E.L.D gave her. In order to determine the result of the test, she needs to find the number of answers to a certain equation. The equation is of form:2210_1.pngWhere 2210_2.png represents logical OR and 2210_3.png represents logical exclusive OR (XOR), and vi,j are some boolean variables or their negations. Natalia calls the left side of the equation a XNF formula. Each statement in brackets is called a clause, and vi,j are called literals.In the equation Natalia has, the left side is actually a 2-XNF-2 containing variables x1,x2,...,xm and their negations. An XNF formula is 2-XNF-2 if: For each 1 \le i \le n, ki \le 2, i.e. the size of each clause doesn't exceed two. Each variable occurs in the formula at most two times (with negation and without negation in total). Please note that it's possible that a variable occurs twice but its negation doesn't occur in any clause (or vice versa). Natalia is given a formula of m variables, consisting of n clauses. Please, make sure to check the samples in order to properly understand how the formula looks like.Natalia is more into fight than theory, so she asked you to tell her the number of answers to this equation. More precisely, you need to find the number of ways to set x1,...,xm with true and false (out of total of 2m ways) so that the equation is satisfied. Since this number can be extremely large, you need to print the answer modulo 109+7.Please, note that some variable may appear twice in one clause, or not appear in the equation at all (but still, setting it to false or true gives different ways to set variables).

Input Format(From the terminal/stdin)

Input The first line of input contains two integers n and m (1 \le n,m \le 100000)- the number of clauses and the number of variables respectively.The next n lines contain the formula. The i-th of them starts with an integer ki- the number of literals in the i-th clause. It is followed by ki non-zero integers ai,1,...,ai,ki. If ai,j \gt 0 then vi,j is xai,j otherwise it's negation of x-ai,j (1 \le ki \le 2, -m \le ai,j \le m, ai,j \neq 0).

Output Format(To the terminal/stdout)

Output Print the answer modulo 1000000007 (109+7) in one line.

Sample Input 1

Copy
6 7
2 4 -2
2 6 3
2 -7 1
2 -5 1
2 3 6
2 -2 -5
 · \n
 · ·  \n
 · · \n
 ·  · \n
 ·  · \n
 · · \n
 ·  ·  \n

Sample Output 1

Copy
48
  \n

Sample Input 2

Copy
8 10
1 -5
2 4 -6
2 -2 -6
2 -7 9
2 10 -1
2 3 -1
2 -8 9
2 5 8
 ·  \n
 ·  \n
 · ·  \n
 ·  ·  \n
 ·  · \n
 ·  ·  \n
 · ·  \n
 ·  · \n
 · · \n

Sample Output 2

Copy
544
   \n

Sample Input 3

Copy
2 3
2 1 1
2 -3 3
 · \n
 · · \n
 ·  · \n

Sample Output 3

Copy
4
 \n

Hints

The equation in the first sample is: 2210_4.png The equation in the second sample is: 2210_5.png The equation in the third sample is: 2210_6.png

Submit

请先 登录

© 2025 FAQs