If you are a computer user, you should have seen pictures drawn with ASCII characters. Such a picture may not look as good as GIF or Postscript pictures, but is much easier to handle. ASCII pictures can easily be drawn using text editors, and can convey graphical information using only text-based media. Program s extracting information from such pictures may be useful.
We are interested in simple pictures of trapezoids, consisting only of asterisk('*') characters and blank spaces. A trapezoid (trapezium in the Queen's English) is a four-side polygon where at least one pair of its sides is parallel. Furthermore, the picture in this problem satisfies the following conditions.
**** | **** | ****** * * | * * *** | * * **** | ******* * | **** **** | *** | **** * * | | * * **** | | ****
Some trapezoids may appear inside others. For example, the following is a valid picture.
********* * * * *** * * * * * * ***** * * * *********
Your task is to recognize trapezoids in the picture and to calculate the area of each trapezoid. The area of a trapezoid is the number of characters on or inside its four sides, including the areas of the trapezoids inside it, if any.
The input contains several descriptions of pictures. Each of then starts with a line containing an integer h (1 ≤ h ≤ 1000), where h is the height (number of lines) of the picture. Each line of the picture consists only of asterisk and space characters, and contains less than 80 characters. The lines of the picture do not necessarily have the same length and may contain redundant space characters at the end. After the last picture, and integer zero terminates the input.
For each picture, your program should produce output lines each containing two integers m and n is this order, which means there are n trapezoids of area m in the picture. output lines for one picture should be in ascending order on m and count all the trapezoids in the picture.
Output lines for two pictures should be separated by a line containing ten hyphen ('-') characters. This separator line should not appear before the output for the first picture nor after the output for the last.
7 ******** * * * *** * * * * * * *** * * * ******** 9 *** * * ***** ***** * * *** ***** * * * * *** 11 **** ******************* * * ********* * * ****** * * **** * ********* * * *** * * * * * * * *** * * * * **** ******* * * *** *** * * * * * ***** * * * * * * * * * * * *** * * *** * * *** *** * * ********* * * * * * ********************* * * * ***************************** 0
(Spacing between lines in pictures is made narrower for better appearance. Note that a blank line exists as the first line of the second picture.)
9 1 56 1 ---------- 12 2 15 1 ---------- 9 3 12 2 15 2 63 1 105 1 264 1