`
Simone_chou
  • 浏览: 182723 次
  • 性别: Icon_minigender_2
  • 来自: 广州
社区版块
存档分类
最新评论

Unusual Product(数学 + 位运算)

    博客分类:
  • CF
 
阅读更多
C. Unusual Product
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Little Chris is a huge fan of linear algebra. This time he has been given a homework about the unusual square of a square matrix.

The dot product of two integer number vectors x and y of size n is the sum of the products of the corresponding components of the vectors. The unusual square of an n × n square matrix A is defined as the sum of n dot products. The i-th of them is the dot product of the i-th row vector and the i-th column vector in the matrix A.

Fortunately for Chris, he has to work only in GF(2)! This means that all operations (addition, multiplication) are calculated modulo 2. In fact, the matrix A is binary: each element of A is either 0 or 1. For example, consider the following matrix A:

The unusual square of A is equal to (1·1 + 1·0 + 1·1) + (0·1 + 1·1 + 1·0) + (1·1 + 0·1 + 0·0) = 0 + 1 + 1 = 0.

However, there is much more to the homework. Chris has to process q queries; each query can be one of the following:

  1. given a row index i, flip all the values in the i-th row in A;
  2. given a column index i, flip all the values in the i-th column in A;
  3. find the unusual square of A.

To flip a bit value w means to change it to 1 - w, i.e., 1 changes to 0 and 0 changes to 1.

Given the initial matrix A, output the answers for each query of the third type! Can you solve Chris's homework?

Input

The first line of input contains an integer n (1 ≤ n ≤ 1000), the number of rows and the number of columns in the matrix A. The next nlines describe the matrix: the i-th line contains n space-separated bits and describes the i-th row of A. The j-th number of the i-th lineaij (0 ≤ aij ≤ 1) is the element on the intersection of the i-th row and the j-th column of A.

The next line of input contains an integer q (1 ≤ q ≤ 106), the number of queries. Each of the next q lines describes a single query, which can be one of the following:

  • i — flip the values of the i-th row;
  • i — flip the values of the i-th column;
  • 3 — output the unusual square of A.

Note: since the size of the input and output could be very large, don't use slow output techniques in your language. For example, do not use input and output streams (cin, cout) in C++.

Output

Let the number of the 3rd type queries in the input be m. Output a single string s of length m, where the i-th symbol of s is the value of the unusual square of A for the i-th query of the 3rd type as it appears in the input.

Sample test(s)
input
3
1 1 1
0 1 1
1 0 0
12
3
2 3
3
2 2
2 2
1 3
3
3
1 2
2 1
1 1
3
output
01001

 

       题意:

       给出 N(1 ~ 1000),后给出这 N X N 的矩阵,每个数字只可能是 0 和 1 两种状态。后给出 Q(1 ~ 10 ^ 6),代表有 Q 个操作,每个操作可以有以下方式:

       1. 当是 1 时,给出 i,说明改变 i 行的状态;

       2. 当是 2 时,给出 i,说明改变 i 列的状态;

       3. 当是 3 时,输出矩阵 A X A 的结果,结果要 % 2 。

 

       思路:

       数学 + 位运算。A X A = a11 * a11 + a22 * a22 + a33 * a33 + 2 * (a12 * a21 + a13 * a31 + a23 * a32)。因为 % 2,所以 A X A = a11 * a11 + a22 * a22 + a33 * a33 ,所以无论改变行还是列,都只会改变一个数的状态而已。除此之外,对于 % 2:1 + 1 = 0,1 + 0 = 1,0 + 1 = 1,0 + 0 = 0。这样的话和异或的运算是一样的,所以直接异或就好,当改变一次状态就取反一次,这样的话就解决所有问题了。

 

       AC:

#include <stdio.h>
#define MAX 1005

int n;
int num[MAX][MAX];

int main() {
    int q,k;
    scanf("%d",&n);
    for(int i = 1;i <= n;i++)
            for(int j = 1;j <= n;j++)
                    scanf("%d",&num[i][j]);

    k = num[1][1];
    for(int i = 2;i <= n;i++) k = k ^ num[i][i];

    scanf("%d",&q);
    while(q--) {
            int kind;
            scanf("%d",&kind);
            if (kind == 1 || kind == 2) {
                    int ans;
                    scanf("%d",&ans);
                    k = !k;
            } else printf("%d",k);
    }

    printf("\n");
    return 0;
}

 

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics