zoukankan      html  css  js  c++  java
  • cf B. Black Square

    B. Black Square
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Polycarp has a checkered sheet of paper of size n × m. Polycarp painted some of cells with black, the others remained white. Inspired by Malevich's "Black Square", Polycarp wants to paint minimum possible number of white cells with black so that all black cells form a square.

    You are to determine the minimum possible number of cells needed to be painted black so that the black cells form a black square with sides parallel to the painting's sides. All the cells that do not belong to the square should be white. The square's side should have positive length.

    Input

    The first line contains two integers n and m (1 ≤ n, m ≤ 100) — the sizes of the sheet.

    The next n lines contain m letters 'B' or 'W' each — the description of initial cells' colors. If a letter is 'B', then the corresponding cell is painted black, otherwise it is painted white.

    Output

    Print the minimum number of cells needed to be painted black so that the black cells form a black square with sides parallel to the painting's sides. All the cells that do not belong to the square should be white. If it is impossible, print -1.

    Examples
    Input
    5 4
    WWWW
    WWWB
    WWWB
    WWBB
    WWWW
    Output
    5
    Input
    1 2
    BB
    Output
    -1
    Input
    3 3
    WWW
    WWW
    WWW
    Output
    1
    Note

    In the first example it is needed to paint 5 cells — (2, 2), (2, 3), (3, 2), (3, 3) and (4, 2). Then there will be a square with side equal to three, and the upper left corner in (2, 2).

    In the second example all the cells are painted black and form a rectangle, so it's impossible to get a square.

    In the third example all cells are colored white, so it's sufficient to color any cell black.

    注意边界

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <queue>
    #include <cmath>
    #include <vector>
    #include <algorithm>
    using namespace std;
    typedef long long ll;
    #define lowbit(x) x&(-x)
    #define max(x,y) (x>y?x:y)
    #define min(x,y) (x<y?x:y)
    #define mem(a) (memset(a,0,sizeof(a)))
    const int inf=0x3f3f3f3f;
    int main()
    {
        int n,m,ans=0;
        cin>>n>>m;
        int imin=105,jmin=105;
        int imax=0,jmax=0;
        char a[n+5][m+5];
        for(int i=1;i<=n;i++)
        {
            for(int j=1;j<=m;j++)
            {
                cin>>a[i][j];
                if(a[i][j]=='B')
                {
                    ans++;
                    imin=min(imin,i);
                    imax=max(imax,i);
                    jmin=min(jmin,j);
                    jmax=max(jmax,j);
                }
            }
        }
        int k=max(imax-imin,jmax-jmin)+1;
        if(!ans) printf("1
    ");
        else if(n>=k && m>=k)
            printf("%d
    ",k*k-ans);
        else printf("-1
    ");
        return 0;
    }
  • 相关阅读:
    微信开发:MySQL utf8mb4 字符集
    Spring 事务
    Exception
    mysql系列之多实例介绍
    python连接MySQL
    1_archlinux_安装篇
    apache中如何调用CGI脚本
    1.1_Django简介及安装
    git分支合并脚本
    用python收集系统信息
  • 原文地址:https://www.cnblogs.com/shinianhuanniyijuhaojiubujian/p/7154417.html
Copyright © 2011-2022 走看看