描述 Description
这片土地被分成N*M个格子,每个格子里写着'R'或者'F',R代表这块土地被赐予了rainbow,F代表这块土地被赐予了freda。
现在freda要在这里卖萌。。。它要找一块矩形土地,要求这片土地都标着'F'并且面积最大。
但是rainbow和freda的OI水平都弱爆了,找不出这块土地,而蓝兔也想看freda卖萌(她显然是不会编程的……),所以它们决定,如果你找到的土地面积为S,它们每人给你S两银子。

题解:
类似与ZJOI2007制作棋盘,这叫悬线法?我感觉就是一个单调栈而已。。。
代码:

 #include<cstdio>

 #include<cstdlib>

 #include<cmath>

 #include<cstring>

 #include<algorithm>

 #include<iostream>

 #include<vector>

 #include<map>

 #include<set>

 #include<queue>

 #include<string>

 #define inf 1000000000

 #define maxn 1200

 #define maxm 500+100

 #define eps 1e-10

 #define ll long long

 #define pa pair<int,int>

 #define for0(i,n) for(int i=0;i<=(n);i++)

 #define for1(i,n) for(int i=1;i<=(n);i++)

 #define for2(i,x,y) for(int i=(x);i<=(y);i++)

 #define for3(i,x,y) for(int i=(x);i>=(y);i--)

 #define mod 1000000007

 using namespace std;

 inline int read()

 {

     int x=,f=;char ch=getchar();

     while(ch<''||ch>''){if(ch=='-')f=-;ch=getchar();}

     while(ch>=''&&ch<=''){x=*x+ch-'';ch=getchar();}

     return x*f;

 }
int n,m,ans,h[maxn],l[maxn],r[maxn],sta[maxn]; int main() { freopen("input.txt","r",stdin); freopen("output.txt","w",stdout); n=read();m=read();
h[]=h[m+]=-;
for1(i,n)
{
for1(j,m)
{
char ch=' ';
while(ch!='F'&&ch!='R')ch=getchar();
if(ch=='F')h[j]++;else h[j]=;
}
int top=;
for1(j,m+)
{
while(top&&h[j]<h[sta[top]])r[sta[top--]]=j-;
sta[++top]=j;
}
top=;
for3(j,m,)
{
while(top&&h[j]<h[sta[top]])l[sta[top--]]=j+;
sta[++top]=j;
}
for1(j,m)ans=max(ans,h[j]*(r[j]-l[j]+));
}
printf("%d\n",*ans); return ; }
05-02 02:39