printРабочее место участника

printЗадачи

1944. Archipelago

Ограничения: время – 1s/2s, память – 64MiB Ввод: input.txt или стандартный ввод Вывод: output.txt или стандартный вывод copy
Послать решение Blockly Посылки Темы Где Обсудить (0)

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: raising 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 computing 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.
The first line of input contains two positive integers, `R` and `C` (`1\ ≤\ R,\ C\ ≤\ 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.
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..... 
Source: COCI 2012/2013, contest #5
loading