A10275 | Polycarp and Hay
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The farmer Polycarp has a warehouse with hay, which can be represented as an $n×m$ rectangular table, where $n$ is the number of rows, and $m$ is the number of columns in the table. Each cell of the table contains a haystack. The height in meters of the hay located in the $i$ -th row and the $j$ -th column is equal to an integer $a_{i,j}$ and coincides with the number of cubic meters of hay in the haystack, because all cells have the size of the base $1×1$ . Polycarp has decided to tidy up in the warehouse by removing an arbitrary integer amount of cubic meters of hay from the top of each stack. You can take different amounts of hay from different haystacks. Besides, it is allowed not to touch a stack at all, or, on the contrary, to remove it completely. If a stack is completely removed, the corresponding cell becomes empty and no longer contains the stack.
Polycarp wants the following requirements to hold after the reorganization:
- the total amount of hay remaining in the warehouse must be equal to $k$ ,
- the heights of all stacks (i.e., cells containing a non-zero amount of hay) should be the same,
- the height of at least one stack must remain the same as it was,
- for the stability of the remaining structure all the stacks should form one connected region.
The two stacks are considered adjacent if they share a side in the table. The area is called connected if from any of the stack in the area you can get to any other stack in this area, moving only to adjacent stacks. In this case two adjacent stacks necessarily belong to the same area.
Help Polycarp complete this challenging task or inform that it is impossible.
Polycarp wants the following requirements to hold after the reorganization:
- the total amount of hay remaining in the warehouse must be equal to $k$ ,
- the heights of all stacks (i.e., cells containing a non-zero amount of hay) should be the same,
- the height of at least one stack must remain the same as it was,
- for the stability of the remaining structure all the stacks should form one connected region.
The two stacks are considered adjacent if they share a side in the table. The area is called connected if from any of the stack in the area you can get to any other stack in this area, moving only to adjacent stacks. In this case two adjacent stacks necessarily belong to the same area.
Help Polycarp complete this challenging task or inform that it is impossible.
输入格式
The first line of the input contains three integers $n$ , $m$ ( $1<=n,m<=1000$ ) and $k$ ( $1<=k<=10^{18}$ ) — the number of rows and columns of the rectangular table where heaps of hay are lain and the required total number cubic meters of hay after the reorganization.
Then $n$ lines follow, each containing $m$ positive integers $a_{i,j}$ ( $1<=a_{i,j}<=10^{9}$ ), where $a_{i,j}$ is equal to the number of cubic meters of hay making the hay stack on the $i$ -th row and $j$ -th column of the table.
Then $n$ lines follow, each containing $m$ positive integers $a_{i,j}$ ( $1<=a_{i,j}<=10^{9}$ ), where $a_{i,j}$ is equal to the number of cubic meters of hay making the hay stack on the $i$ -th row and $j$ -th column of the table.
输出格式
In the first line print "YES" (without quotes), if Polycarpus can perform the reorganisation and "NO" (without quotes) otherwise. If the answer is "YES" (without quotes), then in next $n$ lines print $m$ numbers — the heights of the remaining hay stacks. All the remaining non-zero values should be equal, represent a connected area and at least one of these values shouldn't be altered.
If there are multiple answers, print any of them.
If there are multiple answers, print any of them.
输入输出样例
输入 #1
2 3 35 10 4 9 9 9 7
输出 #1
YES 7 0 7 7 7 7
输入 #2
4 4 50 5 9 1 1 5 1 1 5 5 1 5 5 5 5 7 1
输出 #2
YES 5 5 0 0 5 0 0 5 5 0 5 5 5 5 5 0
输入 #3
2 4 12 1 1 3 1 1 6 2 4
输出 #3
NO
In the first sample non-zero values make up a connected area, their values do not exceed the initial heights of hay stacks. All the non-zero values equal $7$ , and their number is $5$ , so the total volume of the remaining hay equals the required value $k=7·5=35$ . At that the stack that is on the second line and third row remained unaltered.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted