#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 is and median equals .
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 . And you are required to do operations to this matrix showed as below:
- Step : Find the median in this matrix.
- Step : Delete the row and the column containing the median. This operation will reduce the size of the matrix.
- Step : End this game if the matrix’s size is . Go back to step , otherwise.
We want you to tell us all medians selected.
Input
The first line of the input is (no more than ), which stands for the number of test cases you need to solve.
There are three integers , and 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 .
Represent with a sequence in which . Note that, with sequence , we can rebuild matrix . Generate sequence with following formulates:
- ;
- $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$,
, , ;
;
;
.
Output
For every test case, you should output Case #k:
first in a line, where indicates the case number and counts from .
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