单调栈--poj3494
Posted shuizhidao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单调栈--poj3494相关的知识,希望对你有一定的参考价值。
poj3494
思路:一行一行看,所在位置上1的高度先预处理出来,就成了经典单调栈问题
#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>
#include <cmath>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <stack>
#include <iomanip>
#include <cstdio>
using namespace std;
typedef long long LL;
typedef pair<double, double> PDD;
typedef pair<LL, LL> PLL;
const LL N = 2e3+50;
const LL MOD = 1e9+7;
const LL INF = 0x3f3f3f3f;
#define lson l, m, rt>>1
#define rson m+1, r, rt>>1|1
int mp[N][N], dp[N][N];
int main()
int n, m;
while(scanf("%d%d", &n, &m) != EOF)
int ans = 0;
memset(dp, 0, sizeof(dp));
for(int i = 1;i <= n;++i)
for(int j = 1;j <= m;++j)
scanf("%d", &mp[i][j]);
if(mp[i][j] == 1)
dp[i][j] = dp[i-1][j]+1;
dp[i][0] = dp[i][m+1] = -1;
for(int i = 1;i <= n;++i)
stack<int> s;
int r[N];//以该点为最低的右闭边界
s.push(m+1);
for(int j = m;j;--j)
while(dp[i][s.top()] >= dp[i][j]) s.pop();
r[j] = s.top();
s.push(j);
while(!s.empty()) s.pop();
s.push(0);
for(int j = 1;j <= m;++j)
while(dp[i][s.top()] >= dp[i][j]) s.pop();
ans = max(ans, dp[i][j]*(r[j]-s.top()-1));
s.push(j);
cout << ans << endl;
return 0;
以上是关于单调栈--poj3494的主要内容,如果未能解决你的问题,请参考以下文章
POJ - 3494Largest Submatrix of All 1’s(加一点思维后化成 单调栈)