列表

详情


NC24034. [USACO 2016 Jan P]Fort Moo

描述

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 N meters by M meters (1≤N,M≤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 N and M.
The next N lines each contain M 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...

输出:

16

说明:

In the example, the placement of the optimal frame is indicated by 'f's below:

.ffff.
.fX.fX
Xf.Xf.
.ffff.
..X...

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

C++11(clang++ 3.9) 解法, 执行用时: 28ms, 内存消耗: 720K, 提交时间: 2020-03-14 17:43:52

#include<stdio.h>
#include<iostream>
using namespace std;
const int N=205;
char a[N][N];
int n,m,i,j,k,x,y,ans,b[N][N];
int main()
{
	scanf("%d%d",&n,&m);
	for(i=1;i<=n;i++)
	scanf("%s",a[i]+1);
	for(j=1;j<=m;j++)
	for(i=1;i<=n;i++)
	if(a[i][j]=='X') b[i][j]=b[i-1][j]+1;
	else b[i][j]=b[i-1][j];
	for(i=1;i<=n;i++)
	for(j=i;j<=n;j++)
	{
		x=0;
		y=0;
		for(k=1;k<=m;k++)
		if(b[j][k]-b[i-1][k]==0)
		{
			x=max(x,k);
			y=x;
			while(x<m&&a[i][x+1]=='.'&&a[j][x+1]=='.')
			{
				x++;
				if(b[j][x]-b[i-1][x]==0) y=x;
			}
			ans=max(ans,(j-i+1)*(y-k+1));
		}
	}
	cout<<ans;
	return 0;
}

上一题