codefores 14A

来源:互联网 发布:手机淘宝怎样注册网店 编辑:程序博客网 时间:2024/06/03 16:55
                                                                                                                            D -Letter
Crawling in process...Crawling failedTime Limit:1000MSMemory Limit:65536KB 64bit IO Format:%I64d & %I64u
SubmitStatus Practice CodeForces 14A

Description

A boy Bob likes to draw. Not long ago he bought a rectangular graph (checked) sheet withn rows and m columns. Bob shaded some of the squares on the sheet. Having seen his masterpiece, he decided to share it with his elder brother, who lives in Flatland. Now Bob has to send his picture by post, but because of the world economic crisis and high oil prices, he wants to send his creation, but to spend as little money as possible. For each sent square of paper (no matter whether it is shaded or not) Bob has to pay 3.14 burles. Please, help Bob cut out of his masterpiece a rectangle of the minimum cost, that will contain all the shaded squares. The rectangle's sides should be parallel to the sheet's sides.

Input

The first line of the input data contains numbers n andm (1 ≤ n, m ≤ 50),n — amount of lines, and m — amount of columns on Bob's sheet. The following n lines contain m characters each. Character «.» stands for a non-shaded square on the sheet, and «*» — for a shaded square. It is guaranteed that Bob has shaded at least one square.

Output

Output the required rectangle of the minimum cost. Study the output data in the sample tests to understand the output format better.

Sample Input

Input
6 7.........***....*......***....*......***..
Output
****..****..***
Input
3 3****.****
Output
****.****

 

#include<iostream>#include<string>#include<cstdio>#include<cstring>#include<cstdlib>#include<algorithm>#include<cmath>using namespace std;char a[101][101];int n,m;int tx,ty,xx,tt;int main(){cin>>n>>m;for(int i=1;i<=n;i++){for(int j=1;j<=m;j++){cin>>a[j][i];}}for(int i=1;i<=n;i++){for(int j=1;j<=m;j++){if(a[j][i]=='*'){tx=i;break;}}}for(int i=n;i>=1;i--){for(int j=1;j<=m;j++){if(a[j][i]=='*'){ty=i;break;}}}for(int i=1;i<=m;i++){for(int j=1;j<=n;j++){if(a[i][j]=='*'){tt=i;break;}}}for(int i=m;i>=1;i--){for(int j=1;j<=n;j++){if(a[i][j]=='*'){xx=i;break;}}}for(int i=ty;i<=tx;i++){for(int j=xx;j<=tt;j++){cout<<a[j][i];}cout<<endl;}return 0;}


 

原创粉丝点击