hdu 1505 单调栈(最大子矩阵)

点击打开链接

预处理每个点作为底边时的最大高,利用单调栈求出该点为底的最长底边

#include <iostream>
#include <algorithm>
#include <stack>
#include <cstring>
typedef long long ll;
using namespace std;
const int N=1e3+20;
int n,m;
char g[N][N];
int h[N][N];//h[i][j] (i,j)为底向上延伸的最大长度 
int L[N][N],R[N][N];// h[i][j]为高时 (i,j)为底边时的最长底边 
int main()
{
	int t;
	cin>>t;
	while(t--)
	{
		cin>>n>>m;	
		stack <int> s;//单调栈求出每个点的最长底边 
		for(int i=0;i<n;i++) 
		{
		
			for(int j=0;j<m;j++)//预处理出高 
			{
				cin>>g[i][j];
				if(i==0)
				{
					if(g[i][j]=='R')
					h[i][j]=0;
					else
					h[i][j]=1;
				}
				else
				{
					if(g[i][j]=='R')
					h[i][j]=0;
					else
					h[i][j]=h[i-1][j]+1;//
				}
				
				while(!s.empty()&&h[i][j]<h[i][s.top()])
				{
					R[i][s.top()]=j-1;
					s.pop();
				}
				s.push(j);
			}
			while(!s.empty())
			{
				R[i][s.top()]=m-1;	
				s.pop();
			}	
		}
		for(int i=0;i<n;i++) 
		{	
			for(int j=m-1;j>=0;j--)
			{
				
				while(!s.empty()&&h[i][j]<h[i][s.top()])
				{
					L[i][s.top()]=j+1;
					s.pop();
				}
				s.push(j);
			}
			while(!s.empty())
			{
				L[i][s.top()]=0;	
				s.pop();
			}	
		}
		int ans=0;
		for(int i=0;i<n;i++)
		{
			for(int j=0;j<m;j++)
			{
				ans=max(ans,h[i][j]*(R[i][j]-L[i][j]+1));
			}
		
		}
		cout<<ans*3<<endl;
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值