当前位置:   article > 正文

【洛谷】P8783 [蓝桥杯 2022 省 B] 统计子矩阵 的题解_洛谷p8783

洛谷p8783

【洛谷】P8783 [蓝桥杯 2022 省 B] 统计子矩阵 的题解

题目传送门

思路

  • 暴力:这题可以暴力写一下,求一个前缀和,然后枚举子矩阵,时间复杂度是 O ( n 4 ) O(n^4) O(n4),显然过不了。

  • 正解:这个题考的是一个双指针,枚举一下矩阵中的左右边界,在每一个左右边界中,从上往下求一下子段中小于等于 k k k 的数的数量(用双指针扫一下就可以,这一步可以做到 O ( n ) O(n) O(n)时间复杂度 O ( n 3 ) O(n^3) O(n3)

代码

#include <bits/stdc++.h>
#define endl "\n"
#define mem(vis, num) memset(vis, num, sizeof(vis));
#define map mapp
using namespace std;
typedef long long ll;
int a[505][505];
int main() {
	//freopen(".in","r",stdin);
    //freopen(".out","w",stdout);
	ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    int n, m, k;
	cin >> n >> m >> k;
    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 ++)
            a[i][j] += a[i][j - 1];
    ll cnt = 0;
    for(int i = 1; i <= m; i ++)
        for(int j = i; j <= m; j ++) {
            int res = 0;
            for(int l = 1, r = 1; r <= n; r ++) {
                res += a[r][j] - a[r][i - 1];
                while(res > k && l <= r) {
                    res -= a[l][j] - a[l][i - 1];
                    l ++;
                }
                if(res <= k && l <= r) cnt += r - l + 1;
            } 
        }
    cout << cnt;
    return 0;
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/374312
推荐阅读
相关标签
  

闽ICP备14008679号