求最大全1矩阵板子
Posted chen99
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了求最大全1矩阵板子相关的知识,希望对你有一定的参考价值。
题目链接:http://www.51nod.com/Challenge/Problem.html#problemId=1157
贪心暴力
#include<iostream> #include<algorithm> using namespace std; #define maxn 1005 int a[maxn][maxn]; int h[maxn];//存该列往上有多少个1 int l[maxn],r[maxn]; int main() int n,m; int ans=0; cin>>n>>m; for(int i=1;i<=n;i++) for(int j=1;j<=m;j++) cin>>a[i][j]; for(int i=1;i<=n;i++) for(int j=1;j<=m;j++) if(a[i][j]==1) h[j]++; else h[j]=0; h[0]=h[m+1]=-1; for(int j=1;j<=m;j++)//往左最远走到哪 int k=j; while(h[j]<=h[k-1]) k=l[k-1]; l[j]=k; for(int j=m;j>=1;j--)//往右最远走到哪 int k=j; while(h[j]<=h[k+1]) k=r[k+1]; r[j]=k; for(int j=1;j<=m;j++) int x=h[j]*(r[j]-l[j]+1); ans=max(ans,x); cout<<ans<<endl; return 0;
以上是关于求最大全1矩阵板子的主要内容,如果未能解决你的问题,请参考以下文章