See you~
Time Limit: 5000/3000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/Others) Total Submission(s): 2345 Accepted Submission(s): 756
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
大致题意:
一个房间里有很多个格子,一开始没个格子都放有一本书,期间有Q个操作,A是往某个格子里添加X本书,D是从某个格子里拿走X本书,M是从某个格子里拿X本书到另外一个格子。S是询问在两个坐标X1,Y1,X2,Y2的连线为对角线的矩形内有多少本书。
思路:
二维树状数组模版题,刚开始学这一块,记录一下。

1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <algorithm> 5 #define MAX 1002 6 7 using namespace std; 8 9 int sum[MAX][MAX]; 10 11 int lowbit(int x) 12 { 13 return x & (-x); 14 } 15 16 void update(int x,int y,int val) 17 { 18 for(int i = x; i < MAX; i += lowbit(i)) 19 for(int j = y; j < MAX; j += lowbit(j)) 20 sum[i][j] += val; 21 } 22 23 int query(int x,int y) 24 { 25 int ret = 0; 26 for(int i = x; i > 0; i -= lowbit(i)) 27 for(int j = y; j > 0; j -= lowbit(j)) 28 ret += sum[i][j]; 29 return ret ; 30 } 31 32 int main() 33 { 34 int T,Case=1; 35 scanf("%d",&T); 36 while(T--) 37 { 38 printf("Case %d:\n",Case ++); 39 int Q; 40 scanf("%d",&Q); 41 memset(sum,0,sizeof(sum)); 42 for(int i = 1; i < MAX; i ++) 43 for(int j = 1; j < MAX; j ++) 44 update(i,j,1); 45 while( Q-- ) 46 { 47 getchar(); 48 char oper; 49 scanf("%c",&oper); 50 if(oper == 'S') 51 { 52 int x1,y1,x2,y2; 53 scanf("%d%d%d%d",&x1,&y1,&x2,&y2); 54 if(x1 > x2) 55 { 56 int temp = x1; 57 x1 = x2; 58 x2 = temp; 59 } 60 if(y1 > y2) 61 { 62 int temp = y1; 63 y1 = y2; 64 y2 = temp; 65 } 66 printf("%d\n",query(x2+1,y2+1)-query(x2+1,y1)-query(x1,y2+1)+query(x1,y1)); 67 } 68 else if(oper == 'A') 69 { 70 int x1,y1,v; 71 scanf("%d%d%d",&x1,&y1,&v); 72 update(x1+1,y1+1,v); 73 } 74 else if(oper == 'D') 75 { 76 int x1,y1,v; 77 scanf("%d%d%d",&x1,&y1,&v); 78 int num = query(x1+1,y1+1)-query(x1+1,y1)-query(x1,y1+1)+query(x1,y1); 79 if(num < v) 80 v = num; 81 update(x1+1,y1+1,-v); 82 } 83 else if(oper == 'M') 84 { 85 int x1,y1,x2,y2,v; 86 scanf("%d%d%d%d%d",&x1,&y1,&x2,&y2,&v); 87 int num = query(x1+1,y1+1)-query(x1+1,y1)-query(x1,y1+1)+query(x1,y1); 88 if(num < v) 89 v = num; 90 update(x1+1,y1+1,-v); 91 update(x2+1,y2+1,v); 92 } 93 } 94 } 95 return 0; 96 }