CF650C.Table Compression
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Little Petya is now fond of data compression algorithms. He has already studied gz, bz, zip algorithms and many others. Inspired by the new knowledge, Petya is now developing the new compression algorithm which he wants to name dis.
Petya decided to compress tables. He is given a table a consisting of n rows and m columns that is filled with positive integers. He wants to build the table a′ consisting of positive integers such that the relative order of the elements in each row and each column remains the same. That is, if in some row i of the initial table a_{i,j}<a_{i,k} , then in the resulting table a'_{i,j}<a'_{i,k} , and if ai,j=ai,k then ai,j′=ai,k′ . Similarly, if in some column j of the initial table a_{i,j}<a_{p,j} then in compressed table a'_{i,j}<a'_{p,j} and if ai,j=ap,j then ai,j′=ap,j′ .
Because large values require more space to store them, the maximum value in a′ should be as small as possible.
Petya is good in theory, however, he needs your help to implement the algorithm.
输入格式
The first line of the input contains two integers n and m (, the number of rows and the number of columns of the table respectively.
Each of the following n rows contain m integers ai,j (1<=ai,j<=109) that are the values in the table.
输出格式
Output the compressed table in form of n lines each containing m integers.
If there exist several answers such that the maximum number in the compressed table is minimum possible, you are allowed to output any of them.
输入输出样例
输入#1
2 2 1 2 3 4
输出#1
1 2 2 3
输入#2
4 3 20 10 30 50 40 30 50 60 70 90 80 70
输出#2
2 1 3 5 4 3 5 6 7 9 8 7
说明/提示
In the first sample test, despite the fact a1,2=a21 , they are not located in the same row or column so they may become equal after the compression.