306040: CF1137A. Skyscrapers

Memory Limit:512 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Skyscrapers

题意翻译

有一个$n\times m$的网格,每个点都有个权值。 你需要对他的每一个格子,将这一行,这一列重新赋权,是的这一行之间的相对大小不变,每一列的相对大小不变。 求该行该列数的最大值。

题目描述

Dora loves adventures quite a lot. During some journey she encountered an amazing city, which is formed by $ n $ streets along the Eastern direction and $ m $ streets across the Southern direction. Naturally, this city has $ nm $ intersections. At any intersection of $ i $ -th Eastern street and $ j $ -th Southern street there is a monumental skyscraper. Dora instantly became curious and decided to explore the heights of the city buildings. When Dora passes through the intersection of the $ i $ -th Eastern and $ j $ -th Southern street she examines those two streets. After Dora learns the heights of all the skyscrapers on those two streets she wonders: how one should reassign heights to the skyscrapers on those two streets, so that the maximum height would be as small as possible and the result of comparing the heights of any two skyscrapers on one street wouldn't change. Formally, on every of $ nm $ intersections Dora solves an independent problem. She sees $ n + m - 1 $ skyscrapers and for each of them she knows its real height. Moreover, any two heights can be compared to get a result "greater", "smaller" or "equal". Now Dora wants to select some integer $ x $ and assign every skyscraper a height from $ 1 $ to $ x $ . When assigning heights, Dora wants to preserve the relative order of the skyscrapers in both streets. That is, the result of any comparison of heights of two skyscrapers in the current Eastern street shouldn't change and the result of any comparison of heights of two skyscrapers in current Southern street shouldn't change as well. Note that skyscrapers located on the Southern street are not compared with skyscrapers located on the Eastern street only. However, the skyscraper located at the streets intersection can be compared with both Southern and Eastern skyscrapers. For every intersection Dora wants to independently calculate the minimum possible $ x $ . For example, if the intersection and the two streets corresponding to it look as follows: ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1137A/b8843ce623a50ba6456e010cf2c98b56b8233e32.png)Then it is optimal to replace the heights of the skyscrapers as follows (note that all comparisons "less", "equal", "greater" inside the Eastern street and inside the Southern street are preserved) ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1137A/39639df2ab400935251b9673b829739a400357e3.png)The largest used number is $ 5 $ , hence the answer for this intersection would be $ 5 $ . Help Dora to compute the answers for each intersection.

输入输出格式

输入格式


The first line contains two integers $ n $ and $ m $ ( $ 1 \le n, m \le 1000 $ ) — the number of streets going in the Eastern direction and the number of the streets going in Southern direction. Each of the following $ n $ lines contains $ m $ integers $ a_{i,1} $ , $ a_{i,2} $ , ..., $ a_{i,m} $ ( $ 1 \le a_{i,j} \le 10^9 $ ). The integer $ a_{i,j} $ , located on $ j $ -th position in the $ i $ -th line denotes the height of the skyscraper at the intersection of the $ i $ -th Eastern street and $ j $ -th Southern direction.

输出格式


Print $ n $ lines containing $ m $ integers each. The integer $ x_{i,j} $ , located on $ j $ -th position inside the $ i $ -th line is an answer for the problem at the intersection of $ i $ -th Eastern street and $ j $ -th Southern street.

输入输出样例

输入样例 #1

2 3
1 2 1
2 1 2

输出样例 #1

2 2 2 
2 2 2 

输入样例 #2

2 2
1 2
3 4

输出样例 #2

2 3 
3 2 

说明

In the first example, it's not possible to decrease the maximum used height for the problem at any intersection, hence we don't have to change any heights. In the second example, the answers are as follows: - For the intersection of the first line and the first column ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1137A/bc671d6177e8cc9f707791f4138061e48affa407.png) - For the intersection of the first line and the second column ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1137A/d2849b7fe606944f0348e44d9e4591b7a87d7ec6.png) - For the intersection of the second line and the first column ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1137A/75a5e58bc106cd0d570dac89dc650cfe52c62ac2.png) - For the intersection of the second line and the second column ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1137A/d38748916182cc695792c65c0945a1b43c6a19ac.png)

Input

题意翻译

有一个$n\times m$的网格,每个点都有个权值。 你需要对他的每一个格子,将这一行,这一列重新赋权,是的这一行之间的相对大小不变,每一列的相对大小不变。 求该行该列数的最大值。

加入题单

算法标签: