A10306 | Table Compression
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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 $a_{i,j}=a_{i,k}$ then $a'_{i,j}=a'_{i,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 $a_{i,j}=a_{p,j}$ then $a'_{i,j}=a'_{p,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.
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 $a_{i,j}=a_{i,k}$ then $a'_{i,j}=a'_{i,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 $a_{i,j}=a_{p,j}$ then $a'_{i,j}=a'_{p,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 $a_{i,j}$ $(1<=a_{i,j}<=10^{9})$ that are the values in the table.
Each of the following $n$ rows contain $m$ integers $a_{i,j}$ $(1<=a_{i,j}<=10^{9})$ 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.
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 $a_{1,2}≠a_{21}$ , they are not located in the same row or column so they may become equal after the compression.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted