[LintCode] Problem 698 - Maximum Distance in Arrays

Given m arrays, and each array is sorted in ascending order. Now you can pick up two integers from two different arrays (each array picks one) and calculate the distance. We define the difference between two integers a and b to be their absolute difference |a-b|. Your task is to find the maximum difference.

Note

  1. Each given array will have at least 1 number. There will be at least two non-empty arrays.
  2. The total number of the integers in all the m arrays will be in the range of [2, 10000].
  3. The integers in the m arrays will be in the range of [-10000, 10000].

Example

No.1

Input: [[1,2,3], [4,5], [1,2,3]]

Output: 4

Explanation:
One way to reach the maximum difference 4 is to pick 1 in the first or third array and pick 5 in the second array.

No.2

Input: [[1,2,3,4,5,6,7,8,9],[0,10]]

Output: 9

Code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public int maxDiff(int[][] arrs) {
int result = 0;
int min = arrs[0][0];
int max = arrs[0][arrs[0].length - 1];

for (int i = 1; i < arrs.length; i++) {
int start = arrs[i][0];
int end = arrs[i][arrs[i].length - 1];

result = Math.max(result, Math.max(Math.abs(start - max), Math.abs(end - min)));
min = Math.min(min, start);
max = Math.max(max, end);
}

return result;
}