CF1102F.Elongated Matrix

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are given a matrix aa , consisting of nn rows and mm columns. Each cell contains an integer in it.

You can change the order of rows arbitrarily (including leaving the initial order), but you can't change the order of cells in a row. After you pick some order of rows, you traverse the whole matrix the following way: firstly visit all cells of the first column from the top row to the bottom one, then the same for the second column and so on. During the traversal you write down the sequence of the numbers on the cells in the same order you visited them. Let that sequence be s1,s2,,snms_1, s_2, \dots, s_{nm} .

The traversal is kk -acceptable if for all ii ( 1inm11 \le i \le nm - 1 ) sisi+1k|s_i - s_{i + 1}| \ge k .

Find the maximum integer kk such that there exists some order of rows of matrix aa that it produces a kk -acceptable traversal.

输入格式

The first line contains two integers nn and mm ( 1n161 \le n \le 16 , 1m1041 \le m \le 10^4 , 2nm2 \le nm ) — the number of rows and the number of columns, respectively.

Each of the next nn lines contains mm integers ( 1ai,j1091 \le a_{i, j} \le 10^9 ) — the description of the matrix.

输出格式

Print a single integer kk — the maximum number such that there exists some order of rows of matrix aa that it produces an kk -acceptable traversal.

输入输出样例

  • 输入#1

    4 2
    9 9
    10 8
    5 3
    4 3
    

    输出#1

    5
    
  • 输入#2

    2 4
    1 2 3 4
    10 3 7 3
    

    输出#2

    0
    
  • 输入#3

    6 1
    3
    6
    2
    5
    1
    4
    

    输出#3

    3
    

说明/提示

In the first example you can rearrange rows as following to get the 55 -acceptable traversal:

<br></br>5 3<br></br>10 8<br></br>4 3<br></br>9 9<br></br>

Then the sequence ss will be [5,10,4,9,3,8,3,9][5, 10, 4, 9, 3, 8, 3, 9] . Each pair of neighbouring elements have at least k=5k = 5 difference between them.

In the second example the maximum k=0k = 0 , any order is 00 -acceptable.

In the third example the given order is already 33 -acceptable, you can leave it as it is.

首页