树状数组模板1(例题洛谷P3374)(单点修改+区间查询)

Posted nhc2014

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了树状数组模板1(例题洛谷P3374)(单点修改+区间查询)相关的知识,希望对你有一定的参考价值。

例题:https://www.luogu.org/problem/show?pid=3374

程序:

#include<iostream>
#include<cstdio>
#include<algorithm>
using namespace std;
int n,m,x,y,ch,f[600000],a[600000];
int lowbit(int x)
{
    return (x&-x);
}

//单点修改
void update(int x,int k)
{
    while (x<=n) 
    {
        f[x]+=k;
        x+=lowbit(x);
    }
}

//单点查询
int query(int x)
{
    int ans;
    ans=0;
    while (x>0) 
    {
       ans+=f[x];
       x-=lowbit(x);
    }
    return ans;
}
int main()
{
    cin>>n>>m;
    for (int i=1;i<=n;i++) 
    {
      cin>>a[i];
      update(i,a[i]);
    }
    for (int i=1;i<=m;i++){
      cin>>ch>>x>>y;
      if (ch==1) update(x,y);
      else cout<<query(y)-query(x-1)<<endl;
    }  
}

好啦好啦。。。

以上是关于树状数组模板1(例题洛谷P3374)(单点修改+区间查询)的主要内容,如果未能解决你的问题,请参考以下文章

P3374 模板树状数组 1(单点修改区间查询)(树状数组)

Luogu P3374 模板树状数组 1[单点修改-区间查询]

洛谷P3374 模板树状数组 1

洛谷——P3374 模板树状数组 1

洛谷 P3374 模板树状数组 1 题解

洛谷 P3374 模板树状数组 1