CF275B.Convex Shape

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Consider an n×mn×m grid. Initially all the cells of the grid are colored white. Lenny has painted some of the cells (at least one) black. We call a painted grid convex if one can walk from any black cell to any another black cell using a path of side-adjacent black cells changing his direction at most once during the path. In the figure below, the left grid is convex while the right one is not convex, because there exist two cells which need more than one time to change direction in their path.

You're given a painted grid in the input. Tell Lenny if the grid is convex or not.

输入格式

The first line of the input contains two integers nn and mm (1<=n,m<=50)(1<=n,m<=50) — the size of the grid. Each of the next nn lines contains mm characters "B" or "W". Character "B" denotes a black cell of the grid and "W" denotes a white cell of the grid.

It's guaranteed that the grid has at least one black cell.

输出格式

On the only line of the output print "YES" if the grid is convex, otherwise print "NO". Do not print quotes.

输入输出样例

  • 输入#1

    3 4
    WWBW
    BWWW
    WWWB
    

    输出#1

    NO
    
  • 输入#2

    3 1
    B
    B
    W
    

    输出#2

    YES
    
首页