7476: Head Maker

内存限制:128 MB 时间限制:2 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:0 通过:0

题目描述

Zhang3's favorite toy, Steve, has been hit and his head was broken. Zhang3 wants to make a cube as a new head for him.

Zhang3 got a piece of grid paper as material, satisfying the conditions below:

- The grid paper consists of n×m square units, forming n rows by m columns.
- Some units of the grid paper are broken, the others are usable.
- All of the usable units are 4-connected (two units are directly connected by sharing an edge).

By using some tools, she can do the following things for arbitrary times:

- Cut along an edge on the grid paper. After doing this, the paper mustn't be split into two pieces, i.e., all the usable units are still 4-connected.
- Fold along an edge, so that the two adjacent units form a right angle.

A cube has six faces. Every unit should overlap with one of the six faces. The paper is so thin that it's possible to overlap more than one units at the same face. But it's not allowed to leave a face without any units.

Help Zhang3 determine whether it is possible to make a cube with the grid paper.

输入格式

The first line of the input gives the number of test cases, T(1≤T≤100). T test cases follow.

For each test case, the first line contains two integers n,m(1≤n,m≤6), the size of the grid paper.

Then n lines follow, each contains a string of length m, describing the grid. Each character is 0 or 1, where 0 means the unit is broken, and 1 means the unit is usable.

输出格式

For each test case, print a line with a string Yes or No, representing the answer.

输入样例 复制

2
2 5
11111
11000
2 5
11111
01100

输出样例 复制

No
Yes