A875.Fort Moo--Platinum

提高+/省选-

USACO

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Bessie is building a fort with her friend Elsie. Like any good fort, this one
needs to start with a sturdy frame. Bessie wants to build a frame in the shape
of a one-meter-wide rectangular outline, atop which she will build the fort.
Bessie has already chosen a site on which to build the fort -- a piece of land
measuring NN meters by MM meters (1N,M2001 \leq N, M \leq 200). Unfortunately,
the site has some swampy areas that cannot be used to support the frame.
Please help Bessie determine the largest area she can cover with her fort (the
area of the rectangle supported by the frame), such that the frame avoids
sitting on any of the swampy areas.

输入格式

Line 1 contains integers NN and MM.
The next NN lines each contain MM characters, forming a grid describing the
site. A character of '.' represents normal grass, while 'X' represents a
swampy spot.

输出格式

A single integer representing the maximum area that Bessie can cover with her
fort.

输入输出样例

  • 输入#1

    5 6
    ......
    ..X..X
    X..X..
    ......
    ..X...
    

    输出#1

    16
    

说明/提示

In the example, the placement of the optimal frame is indicated by 'f's below:
.ffff.
.fX.fX
Xf.Xf.
.ffff.
..X...

首页