树状数组模板1

树状数组模板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
*/
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值