Advertisement

模拟+字符串——Letter

阅读量:

Letter

题面翻译

题目描述

给定一 N \times M 规模的矩阵,输出最小的包含所有 * 的矩阵。

输入格式

一行两个整数, NM

然后一个 N \times M 大小的矩阵。

输出格式

输出最小的包含所有 * 的矩阵。

数据范围

1 \leq N,M \leq 50

题目描述

A boy Bob likes to draw. Not long ago he bought a rectangular graph (checked) sheet with n 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.

输入格式

The first line of the input data contains numbers n and m ( 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 the required rectangle of the minimum cost. Study the output data in the sample tests to understand the output format better.

样例 #1

样例输入 #1

复制代码
    6 7
    .......
    ..***..
    ..*....
    ..***..
    ..*....
    ..***..
    
    
      
      
      
      
      
      
      
    

样例输出 #1

复制代码
    *** *..
    *** *..
    ***
    
    
      
      
      
      
      
    

样例 #2

样例输入 #2

复制代码
    3 3
    *** *.* ***
    
    
      
      
      
      
    

样例输出 #2

复制代码
    *** *.* ***
    
    
      
      
      
    

思路

对于这种有连续性的题目,我们就得维护l、r,又因为本道题是二维坐标系,所以我们就得维护mini,minj,maxi,maxj四个值。

代码

复制代码
    #include<iostream>
    #include<algorithm>
    #include<cstring>
    
    using namespace std;
    
    const int N = 55;
    
    char w[N][N];
    bool st[N][N];
    int n,m;
    
    int main(){
    cin>>n>>m;
    int maxx=0,maxy=0,minx=N,miny=N;
    
    for(int i=1;i<=n;i++){
        for(int j=1;j<=m;j++){
            cin>>w[i][j];
            if(w[i][j]=='*'){
                maxx=max(maxx,i);
                maxy=max(maxy,j);
                minx=min(minx,i);
                miny=min(miny,j);
            }
        }
    }
    
    for(int i=minx;i<=maxx;i++){
        for(int j=miny;j<=maxy;j++){
            cout<<w[i][j];
        }
        puts("");
    }
    
    return 0;
    }
    
    
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
    

全部评论 (0)

还没有任何评论哟~