CubeProblem DescriptionGiven an N*N*N cube A, whose elements are either 0 or 1. A[i, j, k]
means the number in the i-th row , j-th column and k-th layer.
Initially we have A[i, j, k] = 0 (1 <= i, j, k <= N).We
define two operations, 1: “Not” operation that we change the A[i, j,
k]=!A[i, j, k]. that means we change A[i, j, k] from 0->1,or
1->0. (x1<=i<=x2,y1<=j<=y2,z1<=k<=z2).0: “Query” operation we want to get the value of A[i, j, k].InputMulti-cases.First line contains N and M, M lines follow indicating the operation below.Each operation contains an X, the type of oper
...
继续阅读
(25)