博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ3494Largest Submatrix of All 1’s[单调栈]
阅读量:6296 次
发布时间:2019-06-22

本文共 2405 字,大约阅读时间需要 8 分钟。

Largest Submatrix of All 1’s
Time Limit: 5000MS   Memory Limit: 131072K
Total Submissions: 5883   Accepted: 2217
Case Time Limit: 2000MS

Description

Given a m-by-n (0,1)-matrix, of all its submatrices of all 1’s which is the largest? By largest we mean that the submatrix has the most elements.

Input

The input contains multiple test cases. Each test case begins with m and n (1 ≤ mn ≤ 2000) on line. Then come the elements of a (0,1)-matrix in row-major order on m lines each with n numbers. The input ends once EOF is met.

Output

For each test case, output one line containing the number of elements of the largest submatrix of all 1’s. If the given matrix is of all 0’s, output 0.

Sample Input

2 20 00 04 40 0 0 00 1 1 00 1 1 00 0 0 0

Sample Output

04

Source

, xfxyjwf

最大全1子矩阵

对于每一行,维护一个全1高度(tot)递减栈就行了
注意0时tot[j]=-1,相当于一个高度为0的
最后依旧要弹出栈里的,如果没有上一行连sample都错
注意l已经包含了这个点,最后+n-st[top].pos不需要再+1
////  main.cpp//  poj3494////  Created by Candy on 10/5/16.//  Copyright © 2016 Candy. All rights reserved.//#include 
#include
#include
#include
using namespace std;typedef long long ll;const int N=2e3+5;inline int read(){ char c=getchar();int x=0,f=1; while(c<'0'||c>'9'){
if(c=='-')f=-1;c=getchar();} while(c>='0'&&c<='9'){x=x*10+c-'0';c=getchar();} return x;}int n,m,tot[N],a,ans=0;struct data{ int h,l,pos;}st[N];int top=0;int main(int argc, const char * argv[]) { while(scanf("%d%d",&n,&m)!=EOF){ ans=0; memset(tot,0,sizeof(tot)); for(int i=1;i<=n;i++){ top=0; for(int j=1;j<=m;j++){ a=read(); if(!a) tot[j]=-1; data t; t.h=++tot[j];t.l=1;t.pos=j; int right=0; while(top&&st[top].h>=t.h){ ans=max(ans,(st[top].l+right)*st[top].h); //printf("%d %d %d %d %d %d\n",i,j,ans,st[top].l,right,st[top].h); right+=st[top].l; t.l+=st[top].l; top--; } st[++top]=t;//printf("top %d\n",top); }//printf("toptop %d\n",top); while(top){ ans=max(ans,st[top].h*(st[top].l +n-st[top].pos)); //printf("p %d %d %d %d\n",st[top].h,st[top].pos,st[top].l,ans); top--; } } printf("%d\n",ans); } return 0;}

 

 

转载地址:http://mwmta.baihongyu.com/

你可能感兴趣的文章
类对象定义 二
查看>>
收费视频网站Netflix:用户到底想要“点”什么?
查看>>
MacOS High Sierra 12 13系统转dmg格式
查看>>
关于再次查看已做的多选题状态逻辑问题
查看>>
动态下拉菜单,非hover
查看>>
政府安全资讯精选 2017年第十六期 工信部发布关于规范互联网信息服务使用域名的通知;俄罗斯拟建立备用DNS;Google打击安卓应用在未经同意情况下收集个人信...
查看>>
简单易懂的谈谈 javascript 中的继承
查看>>
iOS汇编基础(四)指针和macho文件
查看>>
Laravel 技巧锦集
查看>>
Android 使用 ViewPager+RecyclerView+SmartRefreshLayout 实现顶部图片下拉视差效果
查看>>
Flutter之基础Widget
查看>>
写给0-3岁产品经理的12封信(第08篇)——产品运营能力
查看>>
ArcGIS Engine 符号自动化配置工具实现
查看>>
小程序 · 跳转带参数写法,兼容url的出错
查看>>
flutter error
查看>>
Flask框架从入门到精通之模型数据库配置(十一)
查看>>
10年重新出发
查看>>
2019年-年终总结
查看>>
聊聊elasticsearch的RoutingService
查看>>
让人抓头的Java并发(一) 轻松认识多线程
查看>>