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 distance between two integers a and b to be their absolute difference |a-b|. Your task is to find the maximum distance.
Example 1:
Note:
Each given array will have at least 1 number. There will be at least two non-empty arrays.
The total number of the integers in all the m arrays will be in the range of [2, 10000].
The integers in the m arrays will be in the range of [-10000, 10000].
解法1: O(NM)
Maintain global min and max calculated from previous arrays and compare current min, max wrt to the global ones.
Results should be in Max(res, abs(global_min - current_max)) and Max(res, abs(global_max - current_min))
C++
Java