题库练习 Elongated Matrix
← 上一题 下一题 →

A12299 | Elongated Matrix

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

You are given a matrix $a$ , consisting of $n$ rows and $m$ 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 $s_1, s_2, \dots, s_{nm}$ .

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

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

输入格式

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

Each of the next $n$ lines contains $m$ integers ( $1 \le a_{i, j} \le 10^9$ ) — the description of the matrix.

输出格式

Print a single integer $k$ — the maximum number such that there exists some order of rows of matrix $a$ that it produces an $k$ -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
C++ 编辑器
输入
输出