树状数组 P3368区间更新 单点查询

Posted jason66661010

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了树状数组 P3368区间更新 单点查询相关的知识,希望对你有一定的参考价值。

题目

https://www.luogu.com.cn/problem/P3368

题目分析

是区间更新 单点查询,使用树状数组

代码

#include<iostream>
#include<cstdio>
using namespace std;
long long a[500001], c[500001];
int n, m;
int lowbit(int x)
{
    return x&(-x);
}
void update(int i, int k)
{
    while (i <= n)
    {
        c[i] += k;
        i += lowbit(i);
    }
}
long long getsum(int i)
{
    long long res = 0;
    while (i > 0)
    {
        res += c[i];
        i -= lowbit(i);
    }
    return res;
}
int main()
{
    int aa, bb, cc,dd;
    scanf("%d%d", &n, &m);
    for (int i = 1; i <= n; i++)
    {
        scanf("%lld", &a[i]);
        update(i, a[i]-a[i-1]);
    }
    for (int i = 0; i < m; i++)
    {
        scanf("%d%d", &aa,&bb);
        if (aa == 1)
        {
            scanf("%d%d",&cc,&dd);
            update(bb, dd);
            update(cc+1, -dd);
        }
        else
            printf("%lld
", getsum(bb));
    }

}

 

以上是关于树状数组 P3368区间更新 单点查询的主要内容,如果未能解决你的问题,请参考以下文章

P3368 模板树状数组 2 单点查询与区间修改

树状数组从入门到弃疗

树状数组模板(持续更新)

树状数组区间修改,区间更新:差分数组的运用

TOJ 2725 See you~(二维树状数组单点更新区间查询)

一维树状数组区间更新区间查询