【统计子矩阵——部分前缀和+双指针】

题目

代码

cpp 复制代码
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 510;
int s[N][N];
int main()
{
    ios::sync_with_stdio(0);
    cin.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 >> s[i][j];
            s[i][j] += s[i-1][j];
        }
    
    ll ans =  0;
    for(int i = 1; i <= n; i++)
    {
        for(int j = i; j <= n; j++)
        {
            for(int l = 1, r = 1, sum = 0; r <= m; r++)
            {
                sum += s[j][r] - s[i-1][r];
                while(sum > k)
                {
                    sum -= s[j][l] - s[i-1][l];
                    l++;
                }
                
                ans += r - l + 1;
            }
        }
    }
    
    cout << ans;
}
相关推荐
敲代码敲到头发茂密14 分钟前
MySQL索引、B+树相关知识总结
java·数据结构·数据库·b树·mysql·算法
小冉在学习19 分钟前
day60 图论章节刷题Part10(Floyd 算法、A * 算法)
算法·图论
木向44 分钟前
leetcode86:分隔链表
数据结构·c++·算法·leetcode·链表
aqua35357423581 小时前
第二天python笔记
c语言·开发语言·python·scrapy·算法·蓝桥杯
XXXJessie1 小时前
acwing算法基础03-递归,枚举
算法·深度优先·图论
_OLi_1 小时前
力扣 LeetCode 19. 删除链表的倒数第N个结点(Day2:链表)
算法·leetcode·链表
MATLAB滤波2 小时前
鲁棒自适应滤波,MATLAB
开发语言·算法·matlab
985小水博一枚呀2 小时前
【深度学习目标检测|YOLO算法4-4】YOLO家族进化史:从YOLOv1到YOLOv11的架构创新、性能优化与行业应用全解析——工业领域
网络·人工智能·深度学习·算法·yolo·目标检测·架构
AnFany2 小时前
LeetCode【0016】最接近的三数之和
python·算法·leetcode·双指针·分治法
_OLi_2 小时前
力扣 LeetCode 27. 移除元素(Day1:数组)
算法·leetcode·职场和发展