Hide

Problem K
Tone Banks

On Mars, the greatest Earth music hits of all time are stored in huge physical databases of records. This will allow current and future Mars inhabitants to remind themselves of the culture of the motherland, should they grow homesick. These databases are called Tone Banks, as they store the songs tone by tone.

However, only just recently, it has been discovered the data format of the records might degrade when exposed to cosmic radiation over long periods of time. Because of that, is it needed to quickly convert the records from the currently used format to a new one.

The current data format consists of a 2D grid of Data Points. Each Data Point is of one of two types, either a “#” or a “.” (similarly to Earth’s $1$s and $0$s). These two Data Point types are said to be complementary to each other. Two Data Points are considered adjacent, if they share an edge in the grid. This means a Data Point on coordinates $(X, Y)$, that is, on the $X$’th row and $Y$’th column, is adjacent to Data Points on coordinates $(X + 1, Y)$, $(X - 1, Y)$, $(X, Y + 1)$ and $(X, Y - 1)$ (within the grid range).

Data Points form so called Data Blobs, which are connected areas consisting of a particular Data Point type. That means each Data Point of a Data Blob is reachable from every other Data Point of the Data Blob via a sequence of steps through consecutively adjacent Data Points of the same type.

On top of that, within the connected area of a Data Blob, there may be other Data Blobs consisting of the complementary Data Point type. The containment may repeat indefinitely, alternating Data Point types, until there is a Data Blob not containing any other Data Blob. For a Data Blob, we call inner Data Blobs such blobs within its area, that are adjacent to at least one Data Point of the Data Blob. Each Data Blob may contain $0$ to $26$ inner Data Blobs. The number of inner Data Blobs contained in a Data Blob determine which tone, represented as an English character, it encodes ($1\text { Data Blob }= a$, $2\text { Data Blobs }= b$, $\dots $, $26\text { Data Blobs }= z$). A Data Blob not containing any other Data Blobs doesn’t represent any tone/character; it represents an empty string. A Data Blob must encompass its inner Data Blobs fully within itself. That means each Data Point $(X, Y)$ of its inner Data Blobs must not be adjacent with Data Points of the same type of its, possibly hypothetical, outer Data Blob (the Data Blob in which it is contained). These points must not only not be adjacent according to the definition above, but they must not be adjacent even over a diagonal to points $(X +1, Y +1)$, $(X +1, Y -1)$, $(X - 1, Y + 1)$ and $(X - 1, Y - 1)$. Note that different inner Data Blobs of a single Data Blob may be adjacent over a diagonal. See the images below for examples.

\includegraphics[width=0.8\textwidth ]{fig}
Figure 1: The left grid has 3 correct inner “.” Data Blobs, while the right has an incorrect inner “#” Data Blob.

Each stored song consists of a sequence of tones, and thus it may be represented as a word consisting of English letters. A song is decoded from a record by the following algorithm. For simplicity we consider that beyond the boundaries of the grid there is an infinite Data Blob of type “.”. In this Data Blob, there is always a single Data Blob of type “#”. We start by decoding this Data Blob. The word represented by a Data Blob is a concatenation of the letter representing the Data Blob and all words represented by inner Data Blobs contained within it. The concatenation happens consecutively by the lexicographical ordering of the coordinates $(X, Y)$ of Data Points of the inner Data Blobs. That is, from two Data Blobs, we first concatenate the word representing a Data Blob with a Data Point with the least row number, or in the case of equality of row numbers, the least column number.

The new data format adheres to the very same rules, only it encodes the reverse of the word encoded by the old format. Can you safely transform all the songs to the new format?

Input

On the input there are two integers $N$ and $M$ ($1 \le N, M \le 100$), representing the number of rows and the number of columns in the grid of the old data format, respectively.

Next $N$ lines follow, each containing $M$ characters of type either “#” or “.”. The grid encodes a nonempty word in accordance to the format described above.

Output

Output two integers $K$ and $L$ ($1 \le K, L \le 3000$), the number of rows and the number of columns of the grid for the new data format, respectively.

After that, output $K$ lines with $L$ characters each, of type either “#”or “.”. The grid must encode the reverse of the word encoded by the input.

Sample Explanations

The first sample encodes word “a”, therefore the answer encodes also word “a”.

The second sampleencodes word “dabba”, therefore the answer encodes word “abbad”.

Sample Input 1 Sample Output 1
7 7
#######
#.....#
#.....#
#.....#
#.....#
#.....#
#######
3 3
###
#.#
###
Sample Input 2 Sample Output 2
8 29
#############################
#...##........##............#
#.#.##.#..##..##.####...###.#
#.#.##....##..##.####...#.#.#
#...##........##........###.#
#######################.....#
######.................######
#############################
14 33
#################################
#################################
#####......................######
#####.################.###.######
#####.#...#######..###.#.#.######
#####.#...#####....###.###.######
#####.#.######..#..###.#.#.######
#####.########.....###.###.######
#####........#########.#.#.######
#####..................###.######
#####..................#.#.######
#####..................###.######
###########................######
#################################

Please log in to submit a solution to this problem

Log in