#CADDI2018D. Square

Square

Score : 900900 points

Problem Statement

Takahashi has an N×NN \times N grid. The square at the ii-th row and the jj-th column of the grid is denoted by (i,j)(i,j). Particularly, the top-left square of the grid is (1,1)(1,1), and the bottom-right square is (N,N)(N,N).

An integer, 00 or 11, is written on MM of the squares in the Takahashi's grid. Three integers ai,bia_i,b_i and cic_i describe the ii-th of those squares with integers written on them: the integer cic_i is written on the square (ai,bi)(a_i,b_i).

Takahashi decides to write an integer, 00 or 11, on each of the remaining squares so that the condition below is satisfied. Find the number of such ways to write integers, modulo 998244353998244353.

  • For all 1i<jN1\leq i < j\leq N, there are even number of 11s in the square region whose top-left square is (i,i)(i,i) and whose bottom-right square is (j,j)(j,j).

Constraints

  • 2N1052 \leq N \leq 10^5
  • 0Mmin(5×104,N2)0 \leq M \leq min(5 \times 10^4,N^2)
  • 1ai,biN(1iM)1 \leq a_i,b_i \leq N(1\leq i\leq M)
  • 0ci1(1iM)0 \leq c_i \leq 1(1\leq i\leq M)
  • If iji \neq j, then (ai,bi)(aj,bj)(a_i,b_i) \neq (a_j,b_j).
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN MM

a1a_1 b1b_1 c1c_1

::

aMa_M bMb_M cMc_M

Output

Print the number of possible ways to write integers, modulo 998244353998244353.

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

For example, the following ways to write integers satisfy the condition:

101   111
011   111
000   011
4 5
1 3 1
2 4 0
2 3 1
4 2 1
4 4 1
32
3 5
1 3 1
3 3 0
3 1 0
2 3 1
3 2 1
0
4 8
1 1 1
1 2 0
3 2 1
1 4 0
2 1 1
1 3 0
3 4 1
4 4 1
4
100000 0
342016343