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:
- Input:
[[1,2,3],
[4,5],
[1,2,3]]
- Output: 4
- Explanation:
- One way to reach the maximum distance 4 is to pick 1 in the first or third array and pick 5 in the second array.
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].
C Solution 1:
int maxDistance(int** arrays, int arraysRowSize, int *arraysColSizes) {
int min = arrays[0][0], max = arrays[0][arraysColSizes[0] - 1];
int res = -1;
int i;
for (i = 1; i < arraysRowSize; i++) {
int tmp1 = abs(arrays[i][0] - max);
int tmp2 = abs(arrays[i][arraysColSizes[i] - 1] - min);
if (res < tmp1) res = tmp1;
if (res < tmp2) res = tmp2;
if (arrays[i][0] < min) min = arrays[i][0];
if (arrays[i][arraysColSizes[i] - 1] > max) max = arrays[i][arraysColSizes[i] - 1];
}
return res;
}
Summary:
- Don't think about performance too much, as long as the performance has same complexity.
LeetCode: 624. Maximum Distance in Arrays





近期评论