码迷,mamicode.com
首页 > 编程语言 > 详细

POJ2155 Matrix(二维树状数组)

时间:2015-09-05 12:19:55      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:

题意:给出矩阵左上角和右下角坐标,矩阵里的元素 1变0 ,0 变1,然后给出询问,问某个点是多少。

#include <iostream>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <queue>
#include <vector>
#include <cstdio>
#define MAXN 1010
int c[MAXN][MAXN],n;
int lowbit(int x)
{
    return x&(-x);
}
void update(int x,int y)
{
    for(int i=x; i<=n; i+=lowbit(i))
        for(int j=y; j<=n; j+=lowbit(j))
            c[i][j]++;
}
int getSum(int x,int y)
{
    int s=0;
    for(int i=x; i>0; i-=lowbit(i))
        for(int j=y; j>0; j-=lowbit(j))
            s+=c[i][j];
    return s;
}
int main()
{
    int t,m,x1,x2,y1,y2;
    char ch[2];
    scanf("%d",&t);
    while(t--)
    {
        memset(c,0,sizeof(c));
        scanf("%d%d",&n,&m);
        while(m--)
        {
            scanf("%s",ch);
            if(ch[0]==C)
            {
                scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
                x1++;
                y1++;
                x2++;
                y2++;
                update(x2,y2);
                update(x1-1,y1-1);
                update(x1-1,y2);
                update(x2,y1-1);
            }
            else
            {
                scanf("%d%d",&x1,&y1);
                printf("%d\n",getSum(x1,y1)%2);
            }
        }
        printf("\n");
    }
    return 0;
}

 

POJ2155 Matrix(二维树状数组)

标签:

原文地址:http://www.cnblogs.com/d-e-v-i-l/p/4782926.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!