【打CF,学算法——二星级】Codeforces 22B Bargaining Table(区域和)

本文介绍了如何解决Codeforces 22B问题,该问题要求在给定的01矩阵中找到最大周长的未占用矩形区域。解题策略是使用区域和的方法,在O(1)时间内计算两点间1的个数,然后枚举矩形的左上角和右下角来找出最大周长。
摘要由CSDN通过智能技术生成

【CF简介】

提交链接:CF 22B


题面:

B. Bargaining Table
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Bob wants to put a new bargaining table in his office. To do so he measured the office room thoroughly and drew its plan: Bob's office room is a rectangular roomn × m meters. Each square meter of the room is either occupied by some furniture, or free. A bargaining table is rectangular, and should be placed so, that its sides are parallel to the office walls. Bob doesn't want to change or rearrange anything, that's why all the squares that will be occupied by the table should be initially free. Bob wants the new table to sit as many people as possible, thus its perimeter should be maximal. Help Bob find out the maximum possible perimeter of a bargaining table for his office.

Input

The first line contains 2 space-separated numbers n andm (1 ≤ n, m ≤ 25) — the office room dimensions. Then there follown lines with m characters 0 or 1 each. 0 stands for a free square meter of the office room. 1 stands for an occupied square meter. It's guaranteed that at least one square meter in the room is free.

Output

Output one number — the maximum possible perimeter of a bargaining table for Bob's office room.

Examples
Input
3 3
000
010
000
Output
8
Input
5 4
1100
0000
0000
0000
0000
Output
16

题意:

    0代表空闲位置,1代表占有位置,给定一个01组成的区域,问空闲区域最大的周长为多少。


解题:

    因为数据量特别小,可以采用区域和的形式,O(1)知道左上角点和右下角点之间1的个数(通过四块区域和可以直观地运算得出),枚举左上角点和右下角点即可。


代码:

#include <iostream>
#include <string>
#include <cstdio>
#include <cstring>
using namespace std;
int mapp[30][30],sum[30][30];
int main()
{
	int n,m,ans=0,tmp;
	char s[30];
	memset(sum,0,sizeof(sum));
	scanf("%d%d",&n,&m);
    for(int i=1;i<=n;i++)
	{
		  scanf("%s",s);
		  for(int j=1;j<=m;j++)
		    mapp[i][j]=s[j-1]-'0';
    }
    for(int i=1;i<=n;i++)
		for(int j=1;j<=m;j++)
			sum[i][j]=sum[i-1][j]+sum[i][j-1]-sum[i-1][j-1]+mapp[i][j];
	for(int i=0;i<n;i++)
	{
		for(int j=0;j<m;j++)
		{
			for(int k=i+1;k<=n;k++)
			{
				for(int p=j+1;p<=m;p++)
				{
                   tmp=sum[k][p]-sum[i][p]-sum[k][j]+sum[i][j];
				   if(tmp==0)
				   {
					   tmp=2*(k-i+p-j);
					   if(tmp>ans)
						   ans=tmp;
				   }
				}
			}
		}
	}
	printf("%d\n",ans);
	return 0;
}



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值