预处理每个点作为底边时的最大高,利用单调栈求出该点为底的最长底边
#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;
}