题库练习 Plus from Picture
← 上一题 下一题 →

A12752 | Plus from Picture

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You have a given picture with size $w \times h$ . Determine if the given picture has a single "+" shape or not. A "+" shape is described below:

- A "+" shape has one center nonempty cell.
- There should be some (at least one) consecutive non-empty cells in each direction (left, right, up, down) from the center. In other words, there should be a ray in each direction.
- All other cells are empty.

Find out if the given picture has single "+" shape.

输入格式

The first line contains two integers $h$ and $w$ ( $1 \le h$ , $w \le 500$ ) — the height and width of the picture.

The $i$ -th of the next $h$ lines contains string $s_{i}$ of length $w$ consisting "." and "\*" where "." denotes the empty space and "\*" denotes the non-empty space.

输出格式

If the given picture satisfies all conditions, print "YES". Otherwise, print "NO".

You can output each letter in any case (upper or lower).

输入输出样例

输入 #1
5 6
......
..*...
.****.
..*...
..*...
输出 #1
YES
输入 #2
3 5
..*..
****.
.*...
输出 #2
NO
输入 #3
7 7
.......
...*...
..****.
...*...
...*...
.......
.*.....
输出 #3
NO
输入 #4
5 6
..**..
..**..
******
..**..
..**..
输出 #4
NO
输入 #5
3 7
.*...*.
***.***
.*...*.
输出 #5
NO
输入 #6
5 10
..........
..*.......
.*.******.
..*.......
..........
输出 #6
NO
C++ 编辑器
输入
输出