5489: Yinyang

内存限制:128 MB 时间限制:2.000 S
评测方式:文本比较 命题人:
提交:0 解决:0

题目描述

You have a grid of n rows and m columns, each cell should be painted either black or white.
The cell in the ith row and jth column is denoted as (i,j).
Two cells are directly connected if and only if they have a common edge and have the same color.
Two cells are connected if and only if they are directly connected or there exist a cell connected to both cells.
A painting plan is good if and only if it satisfy three conditions:
1. All white cells are connected
2. All black cells are connected
3. 1i<n,1j<m, cell(i,j),(i,j+1),(i+1,j)and(i+1,j+1) can't have the same color.
Some of the cells have been painted, you should paint the rest .
output the number of good painting plans module 998244353.

输入

The first line of input contains an integer T(T10), denoting the number of test cases.
Each test case contains n+1 lines.
The first line contains two integer n,m(3n100,3m100,nm<=100), denoting the size of the grid.
The next n lines describe the painted cells, each line contains m integer.
The jth number in ith row describe cell(i,j),the number is 0,1 or 1.
0 means the cell is painted white,1 means the cell is painted black, 1 means the cell is not painted.

输出

Output the number of good painting plans module 998244353.

样例输入 复制

3
3 3
1 0 0
1 1 0
-1 -1 0
3 4
1 -1 -1 0
-1 -1 -1 -1
0 -1 -1 1
10 10
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1

样例输出 复制

2
0
139719073