100 atcoder#ABC213C. [ABC213C] Reorder Cards
[ABC213C] Reorder Cards
Score : points
Problem Statement
We have cards arranged in a matrix with rows and columns. For each , the card at the -th row from the top and -th column from the left has a number written on it. The other cards have nothing written on them.
We will repeat the following two kinds of operations on these cards as long as we can.
- If there is a row without a numbered card, remove all the cards in that row and fill the gap by shifting the remaining cards upward.
- If there is a column without a numbered card, remove all the cards in that column and fill the gap by shifting the remaining cards to the left.
Find the position of each numbered card after the end of the process above. It can be proved that these positions are uniquely determined without depending on the order in which the operations are done.
Constraints
- All pairs are distinct.
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print lines.
If, after the end of the process, the card with the number is at the -th row from the top and -th column from the left, the -th line should contain and in this order with a space between them.
4 5 2
3 2
2 5
2 1
1 2
Let *
represent a card with nothing written on it. The initial arrangement of cards is:
*****
****2
*1***
*****
After the end of the process, they will be arranged as follows:
*2
1*
Here, the card with is at the -nd row from the top and -st column from the left, and the card with is at the -st row from the top and -nd column from the left.
1000000000 1000000000 10
1 1
10 10
100 100
1000 1000
10000 10000
100000 100000
1000000 1000000
10000000 10000000
100000000 100000000
1000000000 1000000000
1 1
2 2
3 3
4 4
5 5
6 6
7 7
8 8
9 9
10 10