SPOJ-1029 MATSUM - Matrix Summation (二维树状数组 单点修改 区块和查询)

MATSUM - Matrix Summation

no tags 

A N × N matrix is filled with numbers. BuggyD is analyzing the matrix, and he wants the sum of certain submatrices every now and then, so he wants a system where he can get his results from a query. Also, the matrix is dynamic, and the value of any cell can be changed with a command in such a system.

Assume that initially, all the cells of the matrix are filled with 0. Design such a system for BuggyD. Read the input format for further details.

Input

The first line of the input contains an integer t, the number of test cases. t test cases follow.

The first line of each test case contains a single integer N (1 <= N <= 1024), denoting the size of the matrix.

A list of commands follows, which will be in one of the following three formats (quotes are for clarity):

  1. "SET x y num" - Set the value at cell (x, y) to num (0 <= x, y < N).
  2. "SUM x1 y1 x2 y2" - Find and print the sum of the values in the rectangle from (x1, y1) to (x2, y2), inclusive. You may assume that x1 <= x2 and y1 <= y2, and that the result will fit in a signed 32-bit integer.
  3. "END" - Indicates the end of the test case.

Output

For each test case, output one line for the answer to each "SUM" command. Print a blank line after each test case.

Example

Input:
1
4
SET 0 0 1
SUM 0 0 3 3
SET 2 2 12
SUM 2 2 2 2
SUM 2 2 3 3
SUM 0 0 2 2
END

Output:
1
12
12
13
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
#define maxn 1033
int c[maxn][maxn], a[maxn][maxn];
inline int lowbit(int x){
    return x & (-x);
}
void add(int x, int y, int v){
    while(x < maxn){
        int cur = y;
        while(cur < maxn){
            c[x][cur] += v;
            cur += lowbit(cur);
        }
        x += lowbit(x);
    }
}
int query(int x, int y){
    int ans = 0;
    while(x){
        int cur = y;
        while(cur){
            ans += c[x][cur];
            cur -= lowbit(cur);
        }
        x -= lowbit(x);
    }
    return ans;
}
int main(){
    int T;
    scanf("%d", &T);
    while(T--){
        int n, x1, y1, x2, y2, v;
        scanf("%d", &n);
        memset(c, 0, sizeof(c));
        memset(a, 0, sizeof(a));
        char s[10];
        while(scanf("%s", s) != EOF){
            if(s[0] == 'E'){
                break;
            }
            if(s[1] == 'E'){
                scanf("%d %d %d", &x1, &y1, &v);
                x1++; y1++;
                add(x1, y1, -a[x1][y1]);
                a[x1][y1] = v;
                add(x1, y1, v);
            }
            else{
                scanf("%d %d %d %d", &x1, &y1, &x2, &y2);
                x1++; y1++; x2++; y2++;
                printf("%d\n", query(x2, y2) - query(x1 - 1, y2) - query(x2, y1 - 1) + query(x1 - 1, y1 - 1));
            }
        }
    }
}  

/*
题意:1024*1024的矩阵,需要对单点修改值,查询子矩阵中的数字和。多cases。

思路:二维树状数组的裸题。
*/

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值