COCI '12 Contest 5 #2 Arhipelag

View as PDF

Submit solution


Points: 7 (partial)
Time limit: 1.0s
Memory limit: 32M

Problem type

A popular tourist destination country is situated on a breathtakingly beautiful archipelago constantly bathed by the sun. The country's residents are very proud of their numerous islands. However, global warming has them very worried: rising sea levels are resulting in rapidly increasing loss of dry land, which is diminishing the beauty of the archipelago.

The map of the archipelago is represented by a grid of R by C squares (characters). The character X (uppercase letter x) represents dry land, while . (period) represents sea.

It has been estimated that, in fifty years, sea will have flooded every square of land that is currently surrounded by sea on three or on all four sides (north, south, east, west). Assume that all squares outside the map (along the edges) are covered by sea.

Your task is to compute the map of the archipelago in fifty years (after the described sea level rise). Since there will probably be less land than today, you shouldn't print out the whole map, but only its smallest rectangular part that contains all land squares. It is guaranteed that at least one square of land will remain in all test cases.

Input Specification

The first line of input contains two positive integers, R and C (1 \le R, C \le 10), the dimensions of the current map.

Each of the following R lines contains C characters. These R by C characters represent the current map of the archipelago.

Output Specification

The output must contain an appropriate number of lines representing the required rectangular part of the future (flooded) map.

Sample Input 1

5 3
...
.X.
.X.
.X.
...

Sample Output 1

X

Sample Input 2

3 10
..........
..XXX.XXX.
XXX.......

Sample Output 2

.XX...X
XX.....

Comments

There are no comments at the moment.