HDU 1166 线段树

题意:

给你N个数据,现在有无数个查询(每次不超过4W)。

线段树的单点更新。

#include<iostream>
#include<string>
#include<fstream>
using namespace std;
#define Lchild rt<<1,L,m
#define Rchild rt<<1|1,m+1,R
int T,N;
int tree[50010*3];
void push_up(int rt)
{
	tree[rt] = tree[rt << 1] + tree[rt << 1 | 1];
}
void build(int rt = 1, int L = 1, int R = N)
{
	if (L == R)
	{
		cin >> tree[rt];
		return;
	}
	int m = (L + R) >> 1;
	build(Lchild);
	build(Rchild);
	push_up(rt);
}
int query(int l, int r, int rt = 1, int L = 1, int R = N)
{
	if (l <= L&&R <= r)
	{
		return tree[rt];
	}
	int m = (L + R) >> 1;
	int ret = 0;
	if (l <= m)
		ret += query(l, r, Lchild);
	if (r > m)
		ret += query(l, r, Rchild);
	return ret;
}
void update(int p,int delta,int rt = 1, int L = 1, int R = N)
{
	if (L == R)
	{
		tree[rt] += delta;
		return;
	}
	int m = (L + R) >> 1;
	if (p <= m)
		update(p, delta, Lchild);
	else
		update(p, delta, Rchild);
	push_up(rt);
}
int main()
{
	cin >> T;
	string str;
	int a, b;
	char s[8] = "";
	for (int i = 1; i <= T; i++)
	{
		cin >> N;
		build();
		cout << "Case " << i <<":"<< endl;
		while (1)
		{
			scanf("%s", s);
			if (!strcmp(s, "End"))
				break;
			scanf("%d%d", &a, &b);
			if (!strcmp(s, "Query"))
			{
				cout << query(a, b) << endl;
			}
			else  if (!strcmp(s, "Add"))
			{
				update(a, b);
			}
			else if (!strcmp(s, "Sub"))
			{
				update(a, -b);
			}
		}
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值