#Lutece0209. Matrix
Matrix
Migrated from Lutece 209 Matrix
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Given an matrix , whose elements are either or . means the number in the row and column. Initially we have ().
We can change the matrix in the following way. Given a rectangle whose upper-left corner is and lower-right corner is , we change all the elements in the rectangle by using not
operation (if it is a then change it into otherwise change it into ). To maintain the information of the matrix, you are asked to write a program to receive and execute two kinds of instructions.
C x1 y1 x2 y2
(, ) changes the matrix by using the rectangle whose upper-left corner is and lower-right corner is .Q x y
() querys .
Input
The first line of the input is an integer () representing the number of test cases. The following blocks each represents a test case.
The first line of each block contains two numbers and (, ) representing the size of the matrix and the number of the instructions. The following lines each represents an instruction having the format Q x y
or C x1 y1 x2 y2
, which has been described above.
Output
For each querying output one line, which has an integer representing .
There is a blank line after every test case.
Samples
1
2 10
C 2 1 2 2
Q 2 2
C 2 1 2 1
Q 1 1
C 1 1 2 1
C 1 2 1 2
C 1 1 2 2
Q 1 1
C 1 1 2 1
Q 2 1
1
0
0
1
Note
The data used in this problem is unofficial data prepared by standy. So any mistake here does not imply mistake in the offcial judge data.
Resources
POJ Monthly,Lou Tiancheng