1 Star 0 Fork 1

saigon/Algorithms

forked from charlieshu/Algorithms 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
P4147 ╙ёє╕╣м.cpp 1.52 KB
一键复制 编辑 原始数据 按行查看 历史
charlie 提交于 2024-01-09 00:01 . move from github to gitee
#include <iostream>
#include <stack>
#include <string.h>
using namespace std;
int main(){
int n,m;
cin>>n>>m;
char a[n][m];
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
cin>>a[i][j];
int b[n][m];
memset(b,0,sizeof(b));
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
if(a[i][j] == 'F')
b[i][j] = j!=0?b[i][j-1]+1:1;
// for(int i=0;i<n;i++){
// for(int j=0;j<m;j++)
// cout<<b[i][j]<<" ";
// cout<<endl;
// }
int ans1[n][m],ans2[n][m];
stack<int> sta1[m],sta2[m];
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
while(!sta1[j].empty() && b[sta1[j].top()][j] >= b[i][j]) sta1[j].pop();
if(!sta1[j].empty())
ans1[i][j] = sta1[j].top()+1;
else
ans1[i][j] = 0;
sta1[j].push(i);
}
}
// cout<<endl;
//
// for(int i=0;i<n;i++){
// for(int j=0;j<m;j++)
// cout<<ans1[i][j]<<" ";
// cout<<endl;
// }
for(int i=n-1;i>=0;i--){
for(int j=m-1;j>=0;j--){
while(!sta2[j].empty() && b[sta2[j].top()][j] >= b[i][j]) sta2[j].pop();
if(!sta2[j].empty())
ans2[i][j] = sta2[j].top()-1;
else
ans2[i][j] = n-1;
sta2[j].push(i);
}
}
// cout<<endl;
//
// for(int i=0;i<n;i++){
// for(int j=0;j<m;j++)
// cout<<ans2[i][j]<<" ";
// cout<<endl;
// }
int ans=0;
for(int i=0;i<n;i++){
for(int j=0;j<m;j++){
int l;
l = b[i][j]*(ans2[i][j]-ans1[i][j]+1);
if(ans < l){
ans = l;
// cout<<"[log]"<<i<<" "<<j<<" "<<l<<" "<<b[i][j]<<endl;
}
}
}
cout<<3*ans;
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/saigonshu/algorithm.git
git@gitee.com:saigonshu/algorithm.git
saigonshu
algorithm
Algorithms
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385