二维线段树模板

最近碰到了,留个板子


void update_x(int rooty, int rootx, int L, int R, int x, int a) //tree[rooty][rootx]对应的矩阵x方向上范围是[L,R]
{ 
	tree[rooty][rootx] += a; 
	if( L == R )  return; 
	int mid = (L + R )/2; 
	if( x <= mid )  update_x(rooty,( rootx << 1) + 1, L ,mid, x, a);
	else  update_x(rooty,( rootx << 1) + 2, mid + 1,R, x, a);
}
void update_y(int rooty, int L, int R, int y, int x, int a) //tree[rooty][rootx]对应的矩阵y方向上范围是[L,R] 
{ 
	update_x( rooty,0, 1, S, x,a); 
	if( L == R) return; 
	int mid = (L + R )/2;
	if( y <= mid )  update_y( ( rooty << 1) + 1, L, mid,y, x, a); 
	else update_y( ( rooty << 1) + 2, mid+1, R, y, x, a); 
}
int query_x(int rooty, int rootx, int L, int R, int x1, int x2) 
{ 
	if (L == x1 && R == x2) return tree[rooty][rootx]; 
	int mid = (L + R) / 2; 
	if (x2 <= mid) return query_x(rooty, (rootx << 1) + 1, L, mid, x1, x2); 
	else if (x1 > mid) return query_x(rooty, (rootx << 1) + 2, mid + 1, R, x1, x2); 
	else return query_x(rooty, (rootx << 1) + 1, L, mid, x1, mid) + query_x(rooty, (rootx << 1) + 2, mid + 1, R, mid + 1, x2); 
}
int query_y(int rooty, int L, int R, int y1, int y2, int x1, int x2)
{
	if (L == y1 && R == y2) return query_x(rooty, 0, 1, S, x1, x2);
	int mid = (L + R) / 2;
	if (y2 <= mid) return query_y((rooty << 1) + 1, L,mid, y1, y2, x1, x2);
	if (y1 > mid) return query_y((rooty << 1) + 2, mid + 1, R, y1, y2, x1, x2);
	else return query_y((rooty << 1) + 1, L, mid, y1, mid, x1, x2) +query_y((rooty << 1) + 2,mid + 1, R, mid + 1, y2, x1, x2);
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值