
Tom's Meadow
Tom has a meadow in his garden. He divides it into N * M squares. Initially all the squares were covered with grass. He mowed down the grass on some of the squares and thinks the meadow is beautiful if and only if
- Not all squares are covered with grass.
- No two mowed squares are adjacent.
Two squares are adjacent if they share an edge. Here comes the problem: Is Tom's meadow beautiful now?
Input
The input contains multiple test cases!
Each test case starts with a line containing two integers N, M (1 <= N, M <= 10) separated by a space. There follows the description of Tom's Meadow. There're N lines each consisting of M integers separated by a space. 0(zero) means the corresponding position of the meadow is mowed and 1(one) means the square is covered by grass.
A line with N = 0 and M = 0 signals the end of the input, which should not be processed
Output
One line for each test case.
Output "Yes" (without quotations) if the meadow is beautiful, otherwise "No"(without quotations).
Sample Input
2 2
1 0
0 1
2 2
1 1
0 0
2 3
1 1 1
1 1 1
0 0
Sample Output
Yes
No
No
Source: Zhejiang Provincial Programming Contest 2007
分析:本题关键点在于统计0的个数以及搜索是否存在纵向和横向两个方向之一存在连续0的情况。
下面给出我的实现代码:

本文介绍了一个判定Tom's Meadow是否美丽的算法。该算法通过检查割草区域的数量及相邻情况来判断草地是否符合美丽标准。输入包括多个测试案例,输出为每个案例的判定结果。
133

被折叠的 条评论
为什么被折叠?



