Luogu P3374 【模板】树状数组 1

  真正的模板题。

  树状数组的思想很简单(不如说背代码更简单),每个节点记录多个节点的信息(每个点存x&(-x)个)。

  道理可以参见很多大佬的博客,最后前缀和的思想搞一下就好了。不想说也不会说。

  CODE

#include<cstdio>
using namespace std;
typedef long long LL;
const int N=;
LL tree[N],n,q,i,c,x,y;
inline void read(LL &x)
{
x=; char ch=getchar(); int flag=;
while (ch<''||ch>'') { if (ch=='-') flag=-; ch=getchar(); }
while (ch>=''&&ch<='') x=x*+ch-'',ch=getchar();
x*=flag;
}
void write(LL x)
{
if (x/) write(x/);
putchar(x%+'');
}
inline int lowbit(LL x) { return x&(-x); }
inline void add(LL x,LL y)
{
while (x<=n)
{
tree[x]+=y;
x+=lowbit(x);
}
}
inline LL sum(LL x)
{
LL tot=;
while (x)
{
tot+=tree[x];
x-=lowbit(x);
}
return tot;
}
int main()
{
read(n); read(q);
for (i=;i<=n;++i)
read(x),add(i,x);
while (q--)
{
read(c); read(x); read(y);
if (c==) add(x,y); else write(sum(y)-sum(x-)),putchar('\n');
}
return ;
}

  其实我是想用线段树再打一遍的,然后发现建树都不会打了。

  明天看线段树+Lazy Tag

  (Tarjan真放下周)

上一篇:Url转Link的C#正则表达式


下一篇:[问题2014S03] 解答