795. 前缀和

Posted 幽殇默

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了795. 前缀和相关的知识,希望对你有一定的参考价值。

在这里插入图片描述
https://www.acwing.com/problem/content/description/797/

#include<cstdio>
#include<iostream>
using namespace std;
const int N=1e5+10;
int a[N],s[N];
int n,m;
int main(void)
{
    cin>>n>>m;
    for(int i=1;i<=n;i++) cin>>a[i],s[i]=s[i-1]+a[i];
    while(m--)
    {
        int l,r; cin>>l>>r;
        cout<<s[r]-s[l-1]<<endl;
    }
    return 0;
}

以上是关于795. 前缀和的主要内容,如果未能解决你的问题,请参考以下文章

795. 前缀和

AcWing 795. 前缀和

AcWing 795.前缀和

AcWing 795. 前缀和

蓝桥杯AcWing 题目题解 - 二分与前缀和差分

leetcode_1292. Maximum Side Length of a Square with Sum Less than or Equal to Threshold_[二维前缀和](代码片段