forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_624.java
48 lines (39 loc) · 1.42 KB
/
_624.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.fishercoder.solutions;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
/**
* 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:
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].
*/
public class _624 {
public int maxDistance(int[][] arrays) {
List<Integer> max = new ArrayList<>();
for (int[] array : arrays) {
max.add(array[array.length - 1]);
}
Collections.sort(max);
int ans = Integer.MIN_VALUE;
for (int[] array : arrays) {
int big = array[array.length - 1] == max.get(max.size() - 1) ? max.get(max.size() - 2) : max.get(max.size() - 1);
ans = Math.max(ans, big - array[0]);
}
return ans;
}
}