Poj 1195 mobile phones

Source: Internet
Author: User
Mobile phones Time Limit: 5000 msmemory limit: 65536 KTotal submissions: 14329 accepted: 6660 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 has es 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 particle, 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 shocould 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 two-dimensional tree array!

Training template !!!!!

The AC code is as follows:

#include<iostream>#include<cstring>#include<cstdio>#include<cmath>#define M 100010#define ll long long#include<algorithm>using namespace std;int cc[1100][1100];int n;int lowbit(int a){    return a&-a;}void add(int x,int y,int a){    while(x<=1100)    {        int y1=y;        while(y1<=1100)        {            cc[x][y1]+=a;            y1+=lowbit(y1);        }        x+=lowbit(x);    }}ll sum(int x,int y){    int ans=0;    while(x>0)    {        int y1=y;        while(y1>0)        {            ans+=cc[x][y1];            y1-=lowbit(y1);        }        x-=lowbit(x);    }    return ans;}int main(){    int i,j;    int m;    int a,b,c,d;    memset(cc,0,sizeof (cc));    while(1)    {        scanf("%d",&m);        if(m==3)            break;        else if(m==0)            scanf("%d",&n);        else if(m==1)        {            scanf("%d%d%d",&a,&b,&c);            add(a+1,b+1,c);        }        else if(m==2)        {            scanf("%d%d%d%d",&a,&b,&c,&d);            printf("%d\n",sum(c+1,d+1)-sum(a,d+1)-sum(c+1,b)+sum(a,b));        }    }    return 0;}




Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.