zoukankan      html  css  js  c++  java
  • poj 1195 Mobile phones(二维BIT裸题)

    Description

    Suppose that the fourth generation mobile phone base stations in the Tampere area operate as follows. The area is divided into squares. The squares form an S * S matrix with the rows and columns numbered from 0 to S-1. Each square contains a base station. The number of active mobile phones inside a square can change because a phone is moved from a square to another or a phone is switched on or off. At times, each base station reports the change in the number of active phones to the main base station along with the row and the column of the matrix. 
    Write a program, which receives these reports and answers queries about the current total number of active mobile phones in any rectangle-shaped area. 

    Input

    The input is read from standard input as integers and the answers to the queries are written to standard output as integers. The input is encoded as follows. Each input comes on a separate line, and consists of one instruction integer and a number of parameter integers according to the following table. 

    The values will always be in range, so there is no need to check them. In particular, if A is negative, it can be assumed that it will not reduce the square value below zero. The indexing starts at 0, e.g. for a table of size 4 * 4, we have 0 <= X <= 3 and 0 <= Y <= 3. 
    Table size: 1 * 1 <= S * S <= 1024 * 1024 
    Cell value V at any time: 0 <= V <= 32767 
    Update amount: -32768 <= A <= 32767 
    No of instructions in input: 3 <= U <= 60002 
    Maximum number of phones in the whole table: M= 2^30 

    Output

    Your program should not answer anything to lines with an instruction other than 2. If the instruction is 2, then your program is expected to answer the query by writing the answer as a single line containing a single integer to standard output.

    Sample Input

    0 4
    1 1 2 3
    2 0 0 2 2 
    1 1 1 2
    1 1 2 -1
    2 1 1 2 3 
    3
    

    Sample Output

    3
    4
    解题思路:这是一道二维树状数组入门题---单点修改、单点(区间)查询,其思路和一维树状数组非常相似,多加了一个维度而已。下面我们来看看怎么实现这两个基本操作:
    将一维数组A[]扩展到二维数组A[][],二维树状数组C[][]来维护矩阵前缀和。
    设原始二维数组A[][]={a11,a12,a13,a14,a15,
    a21,a22,a23,a24,a25,
    a31,a32,a33,a34,a35,
    a41,a42,a43,a44,a45,
    a51,a52,a53,a54,a55};
    那么二维树状数组表示如下:
    C[1][1]=a11,C[1][2]=a11+a12,C[1][3]=a13,C[1][4]=a11+a12+a13+a14,C[1][5]=a15
    这是数组A[][]第一行的一维树状数组;
    C[2][1]=a11+a21,C[2][2]=a11+a12+a21+a22,C[2][3]=a13+a23,C[2][4]=a11+a12+a13+a14+a21+a22+a23+a24,C[2][5]=a15+a25
    这是数组A[][]第一行和第二行相加后得到的树状数组;
    C[3][1]=a31,C[3][2]=a31+a32,C[3][3]=a33,C[3][4]=a31+a32+a33+a34,C[3][5]=a35
    这是数组A[][]第三行的一维树状数组;
    C[4][1]=a11+a21+a31+a41,C[4][2]=a11+a12+a21+a22+a31+a32+a41+a42,C[4][3]=a13+a23+a33+a43...
    这是数组A[][]前4行相加后得到的树状数组;
    C[5][1]=a51,C[5][2]=a51+a52,C[5][3]=a53,C[5][4]=a51+a52+a53+a54,C[5][5]=a55
    这是数组A[][]第5行的一维树状数组。
    仔细观察以上式子可以发现,二维树状数组C[x][y]的值其实是分别在x、y上的一维树状数组向下、向右(x上+lowbit(x)跳跃(>n停止),y上+lowbit(y)跳跃(>n停止))进行求和,这就是矩阵中坐标点值的单点修改。对于区间查询,同样分别在x、y上的一维树状数组从下往上,从右往左进行累加(y上-lowbit(y)跳跃(<=0停止),x上-lowbit(x)跳跃(<=0停止)),这样就得到了(1,1)到(x,y)矩阵中所有元素的和。
    回到本题,题意为给出一些命令进行一些操作:
    0 S 初始化一个全0的S*S矩阵,这个命令只会在第一次给出一次;
    1 X Y A 给坐标点(X,Y)的值加上A;
    2 L B R T 询问(L,B)到(R,T)构成的矩阵中所有元素的总和;
    3 结束对矩阵的操作,程序终止。
    典型的二维BIT,套一下模板即可,但需要注意一点:给出命令中的坐标都是默认从下标0开始的,为避免陷入死循环和计算错误,在更新和询问操作上统一对每一个坐标点(横、纵坐标)加1。
    怎么统计坐标点(L,B)到(R,T)矩阵内所有值呢?给出下面的矩阵:
    1 2 3 4 5
    1 0 0 0 0 0
    2 0 0 0 0 0
    3 0 0 0 0 0
    4 0 0 0 0 0
    5 0 0 0 0 0
    从图上可得计算公式:[R,T]-[L-1,T]-[R,B-1]+[L-1,B-1](多减去了一个左上角的矩阵,还要把它加回来),这样就得到了点(L,B)到(R,T)矩阵中所有元素的和。
    AC代码:
     1 #include<cstdio>
     2 #include<string.h>
     3 const int maxn=1050;
     4 int op,s,x,y,a,l,b,r,t,C[maxn][maxn];
     5 void add(int x,int y,int val){//单点修改
     6     for(int i=x;i<=s;i+=i&-i)
     7         for(int j=y;j<=s;j+=j&-j)
     8             C[i][j]+=val;
     9 }
    10 int query(int x,int y){//前缀和查询
    11     int ans=0;
    12     for(int i=x;i>0;i-=i&-i)
    13         for(int j=y;j>0;j-=j&-j)
    14             ans+=C[i][j];
    15     return ans;
    16 }
    17 int main(){
    18     while(~scanf("%d%d",&op,&s)){
    19         memset(C,0,sizeof(C));
    20         while(~scanf("%d",&op)&&op!=3){
    21             if(op==1){
    22                 scanf("%d%d%d",&x,&y,&a);
    23                 x++,y++;add(x,y,a);//单点修改
    24             }
    25             else{
    26                 scanf("%d%d%d%d",&l,&b,&r,&t);l++,b++,r++,t++;
    27                 printf("%d
    ",query(r,t)-query(l-1,t)-query(r,b-1)+query(l-1,b-1));//区间查询,求矩形中所有元素的和
    28             }
    29         }
    30     }
    31     return 0;
    32 }
  • 相关阅读:
    Orchard:如何生成模块和生成一个Content Part
    马云2011年邮件
    asp.net页面编码问题
    创建一个三D立体感的主页
    25个网页设计实例
    设计一个简洁的个人网站
    新浪微博产品交互改进[转]
    设计一个暗色调简洁漂亮的主页
    用HTML5 画LOGO
    成功企业站设计思路
  • 原文地址:https://www.cnblogs.com/acgoto/p/9477823.html
Copyright © 2011-2022 走看看