Quantum Operations | 프로그래밍의 벗 PivotOJ
PivotOJ

Quantum Operations

시간 제한: 1000ms메모리 제한: 128MB출처: CCC 2005 SeniorBOJ 6878

문제

Quantum computing is currently a hot topic in research. If they can be built, quantum computers will have the ability to perform certain computing tasks much faster than any computer in existence today. Fortunately, you won't need a quantum computer to do this question.

A fundamental concept in quantum computing is the idea of a quantum operation. A quantum operation can be essentially thought of as a matrix. Also, if you perform two quantum operations in parallel on separate quantum data, this can be thought of as a larger quantum operation. Thinking of these operations in terms of matrices again, the resulting matrix from performing two matrices in parallel is called the tensor product of the two matrices (using the symbol \otimes). This is different than the normal product of matrices that you may have learned about.

In a tensor product, you are given two matrices (which are essentially two-dimensional arrays). We will call them AA and BB, and we will represent the individual elements of these two matrices this way:

A=[a11a12a1na21a22a2nam1am2amn], B=[b11b12b1qb21b22b2qbp1bp2bpq].\displaystyle A = \begin{bmatrix} a_{11} & a_{12} & \cdots & a_{1n} \\ a_{21} & a_{22} & \cdots & a_{2n} \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1} & a_{m2} & \cdots & a_{mn} \end{bmatrix},\ B = \begin{bmatrix} b_{11} & b_{12} & \cdots & b_{1q} \\ b_{21} & b_{22} & \cdots & b_{2q} \\ \vdots & \vdots & \ddots & \vdots \\ b_{p1} & b_{p2} & \cdots & b_{pq} \end{bmatrix}.

Notice that the size of matrix AA is m×nm \times n (mm rows and nn columns), and the size of BB is p×qp \times q.

The tensor product of these two matrices will be an mp×nqmp \times nq matrix (with mpmp rows and nqnq columns) that looks like:

AB=[a11[B]a12[B]a1n[B]a21[B]a22[B]a2n[B]am1[B]am2[B]amn[B]],\displaystyle A \otimes B = \begin{bmatrix} a_{11}[B] & a_{12}[B] & \cdots & a_{1n}[B] \\ a_{21}[B] & a_{22}[B] & \cdots & a_{2n}[B] \\ \vdots & \vdots & \ddots & \vdots \\ a_{m1}[B] & a_{m2}[B] & \cdots & a_{mn}[B] \end{bmatrix},

where aij[B]a_{ij}[B] simply indicates that each element in BB is being multiplied by aija_{ij}.

Finally notice that the tensor product is not commutative, which means that changing the order of matrices may change the answer (ABBA)(A \otimes B \ne B \otimes A).

For more than two matrices, we will define ABC=(AB)CA \otimes B \otimes C = (A \otimes B) \otimes C, although it does not technically matter, since the tensor product is associative.

Your task is to compute and output the tensor product of two or more given matrices.

입력

The first line of input will contain the number of matrices, NN, a positive integer. Then, there are NN blocks of lines describing the matrices in order.

In each block, the first line will contain two positive integers, rr and cc, separated by a space, indicating the number of rows and columns, respectively. Then, the next rr lines will denote the rows, in order. Each line will contain cc integers, separated by spaces.

출력

The output (to the screen) will be 6 integers in the following order:

  • the maximum element in the tensor product
  • the minimum element in the tensor product
  • the maximum row sum (i.e., sum of entries in each row)
  • the minimum row sum
  • the maximum column sum
  • the minimum column sum

You may assume that the tensor product matrix will have no more than 10241024 rows and no more than 10241024 columns.

예제

예제 1

입력
2
2 2
1 1
1 -1
2 2
1 0
0 1
출력
1
-1
2
0
2
0

예제 2

입력
3
2 2
1 0
0 3
2 2
1 1
1 -1
2 2
1 0
0 1
출력
3
-3
6
0
6
0
코드를 제출하려면 로그인하세요.