标签:
5 6
R F F F F F
F F F F F F
R R R F F F
F F F F F F
F F F F F F
45
1 #include<iostream> 2 #include<cstdio> 3 #include<algorithm> 4 #include<cstring> 5 #include<cmath> 6 using namespace std; 7 const int mxn=1200; 8 int st[mxn],top; 9 int h[mxn]; 10 int mp[mxn][mxn]; 11 int le[mxn],re[mxn]; 12 int ans=0; 13 int n,m; 14 void read(){//读入 15 char s; 16 for(int i=1;i<=n;i++){ 17 for(int j=1;j<=m;j++){ 18 s=getchar(); 19 while(s!=‘F‘ && s!=‘R‘)s=getchar(); 20 mp[i][j]=(s==‘F‘); 21 } 22 } 23 return; 24 } 25 int main(){ 26 scanf("%d%d",&n,&m); 27 int i,j; 28 read(); 29 for(i=1;i<=n;i++){//行 30 for(j=1;j<=m;j++){//列 31 if(mp[i][j])h[j]++; 32 else h[j]=0; 33 } 34 top=0; 35 st[0]=0; 36 for(j=1;j<=m;j++){ 37 while(top && h[st[top]]>=h[j])top--;//单调栈维护边界 38 le[j]=st[top];//左边界 39 st[++top]=j;//入栈 40 } 41 top=0; 42 st[0]=m+1; 43 for(j=m;j;j--){ 44 while(top && h[st[top]]>=h[j])top--; 45 re[j]=st[top]-1; 46 st[++top]=j; 47 } 48 for(j=1;j<=m;j++){ 49 // printf("test: I:%d J:%d L:%d R:%d H:%d \n",i,j,le[j],re[j],h[j]); 50 ans=max(ans,(re[j]-le[j])*h[j]); 51 } 52 } 53 printf("%d\n",3*ans); 54 return 0; 55 }
标签:
原文地址:http://www.cnblogs.com/SilverNebula/p/5641481.html