Largest Submatrix of All 1’s
5524 단어 [ACM - 데이터 구조]창고
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 ≤ m, n ≤ 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 2
0 0
0 0
4 4
0 0 0 0
0 1 1 0
0 1 1 0
0 0 0 0
Sample Output
0
4
#include
#include
#include
// 1 ,
// , ,
// ,1. , , ,
// , h[][] , , map[][] 0,
// , , , ,
// 00 , , 、
// , , ,
// , , , , , ,
// , max(),
//
using namespace std;
stack <int> stk;
const int Max=2000+10;
int mp[Max][Max];
int m,n;
int h[Max][Max];// 1
int l[Max],r[Max];
int main()
{
memset(mp,0,sizeof(mp));
memset(h,0,sizeof(mp));
while(~scanf("%d %d",&m,&n))
{ int ans=0;
for(int i=1;i<=m;i++)
for(int j=1;j<=n;j++)
{
scanf("%d",&mp[i][j]);
h[i][j]= mp[i][j]==0?0:h[i-1][j]+1;//
}
for(int i=1;i<=m;i++)// ,
{
stack<int> stk1;// , , ,
// ,
for(int j=1;j<=n;j++)
{
while(!stk1.empty()&&h[i][j]<=h[i][stk1.top()])
stk1.pop();
l[j]=stk1.empty()? 1: stk1.top()+1;
stk1.push(j);
}
stack<int> stk2;
for(int j=n;j>=1;j--)
{
while(!stk2.empty()&&h[i][j]<=h[i][stk2.top()])
stk2.pop();
r[j]=stk2.empty()?n:stk2.top()-1;
stk2.push(j);
}
for(int j=1;j<=n;j++)
{
int s;
s=h[i][j]*(r[j]-l[j]+1);
ans=max(ans,s);
}
}
printf("%d
",ans);
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Java 데이터 구조와 알고리즘의 창고(동력 노드 Java 학원 정리)스택, 중국어 번역은 창고, 사실 창고, heap, 더미를 가리킨다.여기서 말하는 것은 데이터 구조의 창고이지 메모리 분배 안의 더미와 창고가 아니다. 창고는 선진적으로 나온 데이터의 구조로 마치 네 접시가 하나하나...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.