LeetCode – 624. 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 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:

  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].
public class Solution {
    public int maxDistance(List<List<Integer>> arrays) {
        int min = arrays.get(0).get(0);
        int max = arrays.get(0).get(arrays.get(0).size() -1);
        int res = 0;
        for(int i=1;i<arrays.size();i++){
            if(Math.abs(max-arrays.get(i).get(0))>res){
                res = Math.abs(max-arrays.get(i).get(0));
            }
            if(Math.abs(arrays.get(i).get(arrays.get(i).size() -1) - min) > res){
                res = Math.abs(arrays.get(i).get(arrays.get(i).size() -1) - min);
            }
            if(arrays.get(i).get(0)<min){
                min = arrays.get(i).get(0);
            }
            if(arrays.get(i).get(arrays.get(i).size() -1)>max){
                max = arrays.get(i).get(arrays.get(i).size() -1);
            }
        }
        return res;
    }
}

This site Original article All followed" Attribution—NonCommercial—ShareAlike 4.0 (CC BY-NC-SA 4.0) ”。 Please keep the following marks for sharing and interpretation:

Original author: Jake Tao Source: 「LeetCode – 624. Maximum Distance in Arrays」

Praise 139
0 0 139

Further reading

Post a reply

Log in can only be commented on later
Share this page
Back to top