zoukankan      html  css  js  c++  java
  • HDU 1892 See you~(二维树状数组)

    See you~

    Time Limit: 5000/3000 MS (Java/Others)    Memory Limit: 65535/32768 K (Java/Others)
    Total Submission(s): 4753    Accepted Submission(s): 1518


    Problem Description
    Now I am leaving hust acm. In the past two and half years, I learned so many knowledge about Algorithm and Programming, and I met so many good friends. I want to say sorry to Mr, Yin, I must leave now ~~>.<~~. I am very sorry, we could not advanced to the World Finals last year.
    When coming into our training room, a lot of books are in my eyes. And every time the books are moving from one place to another one. Now give you the position of the books at the early of the day. And the moving information of the books the day, your work is to tell me how many books are stayed in some rectangles.
    To make the problem easier, we divide the room into different grids and a book can only stayed in one grid. The length and the width of the room are less than 1000. I can move one book from one position to another position, take away one book from a position or bring in one book and put it on one position.
     
    Input
    In the first line of the input file there is an Integer T(1<=T<=10), which means the number of test cases in the input file. Then N test cases are followed.
    For each test case, in the first line there is an Integer Q(1<Q<=100,000), means the queries of the case. Then followed by Q queries.
    There are 4 kind of queries, sum, add, delete and move.
    For example:
    S x1 y1 x2 y2 means you should tell me the total books of the rectangle used (x1,y1)-(x2,y2) as the diagonal, including the two points.
    A x1 y1 n1 means I put n1 books on the position (x1,y1)
    D x1 y1 n1 means I move away n1 books on the position (x1,y1), if less than n1 books at that position, move away all of them.
    M x1 y1 x2 y2 n1 means you move n1 books from (x1,y1) to (x2,y2), if less than n1 books at that position, move away all of them.
    Make sure that at first, there is one book on every grid and 0<=x1,y1,x2,y2<=1000,1<=n1<=100.
     
    Output
    At the beginning of each case, output "Case X:" where X is the index of the test case, then followed by the "S" queries.
    For each "S" query, just print out the total number of books in that area.
     
    Sample Input
    2 3 S 1 1 1 1 A 1 1 2 S 1 1 1 1 3 S 1 1 1 1 A 1 1 2 S 1 1 1 2
     
    Sample Output
    Case 1: 1 3 Case 2: 1 4
     
    Author
    Sempr|CrazyBird|hust07p43
     
    Source
     
    Recommend
    lcy   |   We have carefully selected several similar problems for you:  1541 2492 1894 1394 3450 
    /*
    给定4种操作:  
    S x1 y1 x2 y2 询问以(x1 , y1) - (x2 , y2)为对角线的矩形的面积,但是这个对角线不一定是正对角线。
    A x1 y1 n 把点(x1 , y1)加上n。
    D x1 y1 n点(x1 , y1)减去n如果不足n就全部删除即可。
    M x1 y1 x2 y2 n 把点(x1 , y1)点值中扣除n加到(x2 , y2),如果不过n则把(x1 , y1)值全部加到(x2 , y2)
    */
    #include<iostream>
    #include<stdio.h>
    #include<cmath>
    #include<string.h>
    #define lowbit(x) x&(-x)
    #define N 1005
    using namespace std;
    int t,n;
    int c[N][N];
    void update(int x,int y,int val)
    {
        //int flag=fabs(val);
        // while(x<N)
        // {
            // while(y<N)
            // {
                // cout<<x<<" "<<y<<endl;
                // c[x][y]+=val;
                // if(c[x][y]<0)
                // {
                    // flag=c[x][y]+val;
                    // c[x][y]=0;
                // }    
                // y+=lowbit(y);
            // }
            // x+=lowbit(x);
        // }
        for(int i=x;i<N;i+=lowbit(i))
        {
            for(int j=y;j<N;j+=lowbit(j))
            {
                c[i][j]+=val;
                // if(c[i][j]<0)
                // {
                    // flag=c[i][j]+val;
                    // c[i][j]=0;
                // }    
            }    
        }
        // return val;//返回你实际搬运的东西
    }
    int getsum(int x,int y)
    {
        int s=0;
        // while(x>0)
        // {
            // while(y>0)
            // {
                // s+=c[x][y];
                // y-=lowbit(y);
            // }
            // x-=lowbit(x);
        // }
        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 getS(int x1,int y1,int x2,int y2)
    // {
        // cout<<getsum(x1,y1)<<" "<<getsum(x1-1,y2)<<" "<<getsum(x2,y1-1)<<" "<<getsum(x2-1,y2-1)<<endl;
        // return getsum(x1,y1)-getsum(x1,y2-1)-getsum(x2-1,y1)+getsum(x2-1,y2-1);
    // }
    int main()
    {
        //freopen("C:\Users\acer\Desktop\in.txt","r",stdin);
        scanf("%d",&t);
        int Case=1;
        while(t--)
        {
            printf("Case %d:
    ",Case++);
            scanf("%d",&n);
            int x1,x2,y1,y2,val;
            memset(c,0,sizeof c);
            for(int i=1;i<=N;i++)
                for(int j=1;j<=N;j++)
                    update(i,j,1);
            //cout<<getsum(1,1)<<" "<<getsum(2,2)<<endl;
            for(int i=0;i<n;i++)
            {
                //getchar();
                char op[5];
                scanf("%s",&op);
                //getchar();
                if(op[0]=='A'||op[0]=='D')
                {
                    scanf("%d%d%d",&x1,&y1,&val);
                    x1++;y1++;
                    if(op[0]=='D')
                        val=-min(val,getsum(x1,y1)-getsum(x1-1,y1)-getsum(x1,y1-1)+getsum(x1-1,y1-1));
                    update(x1,y1,val);
                }
                else if(op[0]=='M')
                {
                    scanf("%d%d%d%d%d",&x1,&y1,&x2,&y2,&val);
                    x1++;x2++;y1++;y2++;
                    int temp=min(val,getsum(x1,y1)-getsum(x1-1,y1)-getsum(x1,y1-1)+getsum(x1-1,y1-1));//这个是你实际从前一个点搬走的东西
                    update(x1,y1,-temp);
                    update(x2,y2,temp);
                }
                else
                {
                    scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
                    if(x1<x2)
                        swap(x1,x2);
                    if(y1<y2)
                        swap(y1,y2);//并不一定是正对角线
                    x1++;x2++;y1++;y2++;
                    //cout<<x1<<" "<<y1<<" "<<x2<<" "<<y2<<endl;
                    //cout<<"getsum(x2,y2)="<<getsum(x2,y2)<<endl;
                    // cout<<getsum(x1,y1)<<" "<<getsum(x1,y2-1)<<" "<<getsum(x2-1,y1)<<" "<<getsum(x2-1,y2-1)<<endl;
                    printf("%d
    ",getsum(x1,y1)-getsum(x1,y2-1)-getsum(x2-1,y1)+getsum(x2-1,y2-1));
                }
            }
        }
        return 0;
    }
    /*
    Case 1:
    1
    3
    Case 2:
    1 
    4
    */
  • 相关阅读:
    836. Rectangle Overlap
    背包问题---01背包最优方案总数(原理剖析代码实现)
    背包问题---01背包(原理,伪代码,编程实现)
    DP---基本思想 具体实现 经典题目 POJ1160 POJ1037
    DP---(POJ1159 POJ1458 POJ1141)
    DP--HDU 1003(最大子串和)
    DP----入门的一些题目(POJ1088 POJ1163 POJ1050)
    DFS(DP)---POJ 1014(Dividing)
    博弈---斐波那契博弈
    元素相加交换另解&puts的一个用法
  • 原文地址:https://www.cnblogs.com/wuwangchuxin0924/p/5894269.html
Copyright © 2011-2022 走看看