Submit | All submissions | Best solutions | Back to list |
UCBINTG - Archipelago |
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.
Input
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.
Output
The output must contain an appropriate number of lines representing the required rectangular part of the future (flooded) map.
Example
Input: 5 3 ... .X. .X. .X. ... Output: X
Input: 3 10 .......... ..XXX.XXX. XXX....... Output: .XX...X XX.....
Added by: | Gabriel Menacho |
Date: | 2014-09-10 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | COCI 2012/2013 Round 5, http://hsin.hr/coci/archive/2012_2013/contest5_tasks.pdf |
hide comments
2017-11-07 07:39:56
Fun little graph problem =) |
|
2016-06-18 20:03:47
Don't put any spaces in the output. |
|
2016-02-26 18:06:45 Mihajlo
Easy bf ac in 1st go my 50th ac :D Last edit: 2016-02-26 18:07:20 |