#Lutece0487. Median Deletion

Median Deletion

Migrated from Lutece 487 Median Deletion

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

The median of a sequence is defined to be the smallest number which is not smaller than half of the numbers in this sequence, and denoted as median{sequence}. For example, median(1,3,4,7,8)(1,3,4,7,8) is 44 and median (1,3,3,4,7,8)(1,3,3,4,7,8) equals 33.

The definition is also fit for integer matrices. However, we need to modify it a little. For numbers with the same value, we define the one with the minimum row number to be smaller. If their row numbers are the same, the one with the minimum column number is smaller.

In this problem, you are given an integer matrix of size N×MN \times M. And you are required to do operations to this matrix showed as below:

  • Step 11: Find the median in this matrix.
  • Step 22: Delete the row and the column containing the median. This operation will reduce the size of the matrix.
  • Step 33: End this game if the matrix’s size is 0×00 \times 0. Go back to step 11, otherwise.

We want you to tell us all medians selected.

Input

The first line of the input is TT (no more than 1010), which stands for the number of test cases you need to solve.

There are three integers NN, MM and XX listed in a single line, indicating the number of rows, columns of the matrix and a seed needed to generate the matrix. The matrix is denoted by AA.

Represent AA with a sequence BB in which B(i×M+j)=A(i,j)B(i \times M + j) = A(i , j). Note that, with sequence BB, we can rebuild matrix AA. Generate sequence BB with following formulates:

  1. B(0)=XB(0) = X;
  2. $B(k = i \times M + j) = (1234 \times (B(k-1) \times i)^2 + 5678 \times B(k-1) \times j + 91011)\ modulo\ 1000000+1$,

0<k<N×M0 < k < N \times M, 0i<N0 \leq i < N, 0j<M0 \leq j < M;

1N10001 \leq N \leq 1000;

1M10001 \leq M \leq 1000;

1X10000001 \leq X \leq 1000000.

Output

For every test case, you should output Case #k: first in a line, where kk indicates the case number and counts from 11.

Print the medians in the order they are selected with each one in a line.

Samples

2
2 2 123
1000 10 123456
Case #1:
789406
810636
Case #2:
498220
498748
497476
496332
493892
488636
485156
487572
477308
476180

Note

In the first test case, the matrix is

$$\begin{bmatrix} 123 & 789406\\ 810636 & 910284 \end{bmatrix} $$

Resources

Sichuan State Programming Contest 2011