max pool实现

题目

二维矩阵(nm) 求每个(lw)的子矩阵的最大元素, 就是一维滑动窗口的升级版

自己瞎掰的题解

#include 
using namespace std;

const int N = 1e3;
int n, m;
// l 代表长 w 代表宽
int l, w;

int s[N][N];
int dp[N][N];

// 相当于每行的我用单调队列做一遍 去取区间最大值
void init(int row, int *t) {
    deque que;
    for(int i=0; i= l)
                que.pop_front();
            while(!que.empty() && t[i] > t[que.back()])
                que.pop_back();
            que.push_back(i);
        }
        dp[row][i] = t[que.front()];
    }
    return ;
}

void solve() {
    memset(dp, 0, sizeof(dp));
    for(int i=0; i> n >> m >> l >> w;
    for(int i=0; i

转载于:https://www.cnblogs.com/Draymonder/p/11521960.html

你可能感兴趣的:(max pool实现)