树状数组模板1
Time Limit:10000MS Memory Limit:65536K
Total Submit:145 Accepted:70
Case Time Limit:1000MS
Description
一行N个方格,开始每个格子里的数都是0。现在动态地提出一些问题和修改:提问的形式是求某一个特定的子区间[a,b]中所有元素的和;修改的规则是指定某一个格子x,加上或者减去一个特定的值A。现在要求你能对每个提问作出正确的回答。1≤N≤100000,提问和修改的总数可能达到100000条。
Input
20 //方格个数
6 //有几组操作
M 1 1 //表示修改,第一个表示格子位置,第二个数表示在原来的基础上加上的数,
M 2 2
M 3 4
M 3 -5
M 6 7
C 2 6 //表示统计 ,第一个数表示起始位置,第二个数表示结束位置
Output
8
树状数组模板1:
#include <algorithm>
#include <iostream>
#include <cstring>
#include <vector>
#include <cstdio>
#include <queue>
#include <cmath>
#define LL long long
using namespace std;
const int N=1e6+100,M=1010;
int n,m,x,y,c[N];
char s;
int add (int x) {return x&(-x);}
void put (int x,int y) {for (;x<=m;x+=add (x)) c[x]+=y;}
int find (int x)
{
int ans(0);
for (;x;x-=add (x)) ans+=c[x];
return ans;
}
int main ()
{
scanf ("%d %d",&m,&n);
for (int i=1;i<=n;i++)
{
cin >>s;scanf ("%d %d",&x,&y);
if (s=='M') put (x,y);
else printf ("%d\n",find (y)-find (x-1));
}
return 0;
}
/*
20 6
M 1 1
M 2 2
M 3 4
M 3 -5
M 6 7
C 2 6
*/