624. Maximum Distance in Arrays
Difficulty: Easy
Topics: Array, Hash Table
Similar Questions:
Problem:
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:
m
arrays will be in the range of [2, 10000].m
arrays will be in the range of [-10000, 10000].Solutions:
class Solution {
public:
int maxDistance(vector<vector<int>>& arrays) {
int m = arrays.size();
if (m == 0) return 0;
int firstVal = INT_MIN;
int secondVal = INT_MIN;
int firstIndex = -1;
int secondIndex = -1;
for (int i = 0; i < m; ++i) {
if (arrays[i].back() >= firstVal) {
secondVal = firstVal;
secondIndex = firstIndex;
firstVal = arrays[i].back();
firstIndex = i;
} else if (arrays[i].back() > secondVal) {
secondVal = arrays[i].back();
secondIndex = i;
}
}
int ret = 0;
for (int i = 0; i < m; ++i) {
if (i == firstIndex) {
ret = max(ret, secondVal - arrays[i][0]);
} else {
ret = max(ret, firstVal - arrays[i][0]);
}
}
return ret;
}
};