300798: CF152D. Frames

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Frames

题意翻译

给出一个$n\times m$字符矩形,每个字符是`.`或`#`,你需要识别出两个边由`#`组成的矩形,且这两个矩形的长和宽都大于$2$,有解输出`YES`和任意一组解,无解输出`NO`。 $3\leq n,m\leq 1000$

题目描述

One day Vasya got hold of a sheet of checkered paper $ n×m $ squares in size. Our Vasya adores geometrical figures, so he painted two rectangles on the paper. The rectangles' sides are parallel to the coordinates' axes, also the length of each side of each rectangle is no less than 3 squares and the sides are painted by the grid lines. The sides can also be part of the sheet of paper's edge. Then Vasya hatched all squares on the rectangles' frames. Let's define a rectangle's frame as the set of squares inside the rectangle that share at least one side with its border. A little later Vasya found a sheet of paper of exactly the same size and couldn't guess whether it is the same sheet of paper or a different one. So, he asked you to check whether the sheet of paper he had found contains two painted frames and nothing besides them. Please note that the frames painted by Vasya can arbitrarily intersect, overlap or even completely coincide. The coordinates on the sheet of paper are introduced in such a way that the $ X $ axis goes from top to bottom, the $ x $ coordinates of the squares' numbers take values from $ 1 $ to $ n $ and the $ Y $ axis goes from the left to the right and the $ y $ coordinates of the squares' numbers take values from $ 1 $ to $ m $ .

输入输出格式

输入格式


The first input line contains two integers $ n $ and $ m $ ( $ 3<=n,m<=1000 $ ) — the sizes of the sheet of paper Vasya found. Next $ n $ lines, each consisting of $ m $ symbols "." (dot) and "\#" (number sign), describe the found sheet of paper. The symbol "\#" represents a hatched square and the symbol "." represents a non-hatched square.

输出格式


In the first line print the single word "YES" or "NO", meaning whether it is true that the found sheet of paper has two frames painted on it. If the answer is positive, then print in the second line $ 4 $ integers: the coordinates of the upper left and lower right corners of the first frame. In the third line print $ 4 $ integers: the coordinates of the upper left and the lower right corners of the second frame. If there are multiple answers, print any of them.

输入输出样例

输入样例 #1

4 5
#####
#.#.#
###.#
#####

输出样例 #1

YES
1 1 3 3
1 1 4 5

输入样例 #2

5 6
...###
...###
#####.
#...#.
#####.

输出样例 #2

NO

说明

In the first sample there are two frames on the picture. The first one is: `###..<br></br>#.#..<br></br>###..<br></br>.....<br></br>`The second one is: `#####<br></br>#...#<br></br>#...#<br></br>#####<br></br>`In the second sample the painted figures are not frames. Note that the height and width of valid frames is no less than 3.

Input

题意翻译

给出一个$n\times m$字符矩形,每个字符是`.`或`#`,你需要识别出两个边由`#`组成的矩形,且这两个矩形的长和宽都大于$2$,有解输出`YES`和任意一组解,无解输出`NO`。 $3\leq n,m\leq 1000$

加入题单

算法标签: