代码拉取完成,页面将自动刷新
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 static class Solution1 {
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;
}
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。