Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5984 Accepted Submission(s): 2569
Each area has its width and length. The area is divided into a grid of equal square units.The rent paid for each unit on which you're building stands is 3$.
Your task is to help Bob solve this problem. The whole city is divided into K areas. Each one of the areas is rectangular and has a different grid size with its own length M and width N.The existing occupied units are marked with the symbol R. The unoccupied units are marked with the symbol F.
R – reserved unit
F – free unit
In the end of each area description there is a separating line.
题解:上题的强化版,dp记录的当前连续的f长度;相当于长方形的高;接下来就是上题的子问题了;
刚开始一个一个字符输入的wa了,最后改成字符串输入才对;
代码:
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> #include<vector> using namespace std; const int INF=0x3f3f3f3f; #define mem(x,y) memset(x,y,sizeof(x)) #define SI(x) scanf("%d",&x) #define PI(x) printf("%d",x) #define SD(x,y) scanf("%lf%lf",&x,&y) #define P_ printf(" ") const int MAXN=1010; typedef long long LL; char mp[MAXN][MAXN]; int l[MAXN],r[MAXN],s[MAXN]; int dp[MAXN][MAXN]; int main(){ int T,N,M; SI(T); char ch[5]; while(T--){ SI(N);SI(M); for(int i=1;i<=N;i++){ for(int j=1;j<=M;j++){ scanf("%s",ch); mp[i][j]=ch[0]; } } int area=0; mem(dp,0); for(int i=1;i<=N;i++){ s[0]=s[M+1]=-1; for(int j=1;j<=M;j++){ if(mp[i][j]=='F')dp[i][j]=dp[i-1][j]+1; s[j]=dp[i][j]; l[j]=j;r[j]=j; } for(int j=1;j<=N;j++){ while(s[l[j]-1]>=s[j]) l[j]=l[l[j]-1]; } for(int j=N;j>=1;j--){ while(s[r[j]+1]>=s[j]) r[j]=r[r[j]+1]; } for(int j=1;j<=N;j++){ area=max(area,s[j]*(r[j]-l[j]+1)); } } printf("%d\n",area*3); } return 0; }