返回介绍

solution / 1400-1499 / 1471.The k Strongest Values in an Array / README_EN

发布于 2024-06-17 01:03:19 字数 4822 浏览 0 评论 0 收藏 0

1471. The k Strongest Values in an Array

中文文档

Description

Given an array of integers arr and an integer k.

A value arr[i] is said to be stronger than a value arr[j] if |arr[i] - m| > |arr[j] - m| where m is the median of the array.
If |arr[i] - m| == |arr[j] - m|, then arr[i] is said to be stronger than arr[j] if arr[i] > arr[j].

Return _a list of the strongest k_ values in the array. return the answer in any arbitrary order.

Median is the middle value in an ordered integer list. More formally, if the length of the list is n, the median is the element in position ((n - 1) / 2) in the sorted list (0-indexed).

  • For arr = [6, -3, 7, 2, 11], n = 5 and the median is obtained by sorting the array arr = [-3, 2, 6, 7, 11] and the median is arr[m] where m = ((5 - 1) / 2) = 2. The median is 6.
  • For arr = [-7, 22, 17, 3], n = 4 and the median is obtained by sorting the array arr = [-7, 3, 17, 22] and the median is arr[m] where m = ((4 - 1) / 2) = 1. The median is 3.

 

Example 1:

Input: arr = [1,2,3,4,5], k = 2
Output: [5,1]
Explanation: Median is 3, the elements of the array sorted by the strongest are [5,1,4,2,3]. The strongest 2 elements are [5, 1]. [1, 5] is also accepted answer.
Please note that although |5 - 3| == |1 - 3| but 5 is stronger than 1 because 5 > 1.

Example 2:

Input: arr = [1,1,3,5,5], k = 2
Output: [5,5]
Explanation: Median is 3, the elements of the array sorted by the strongest are [5,5,1,1,3]. The strongest 2 elements are [5, 5].

Example 3:

Input: arr = [6,7,11,7,6,8], k = 5
Output: [11,8,6,6,7]
Explanation: Median is 7, the elements of the array sorted by the strongest are [11,8,6,6,7,7].
Any permutation of [11,8,6,6,7] is accepted.

 

Constraints:

  • 1 <= arr.length <= 105
  • -105 <= arr[i] <= 105
  • 1 <= k <= arr.length

Solutions

Solution 1

class Solution:
  def getStrongest(self, arr: List[int], k: int) -> List[int]:
    arr.sort()
    m = arr[(len(arr) - 1) >> 1]
    arr.sort(key=lambda x: (-abs(x - m), -x))
    return arr[:k]
class Solution {
  public int[] getStrongest(int[] arr, int k) {
    Arrays.sort(arr);
    int m = arr[(arr.length - 1) >> 1];
    List<Integer> nums = new ArrayList<>();
    for (int v : arr) {
      nums.add(v);
    }
    nums.sort((a, b) -> {
      int x = Math.abs(a - m);
      int y = Math.abs(b - m);
      return x == y ? b - a : y - x;
    });
    int[] ans = new int[k];
    for (int i = 0; i < k; ++i) {
      ans[i] = nums.get(i);
    }
    return ans;
  }
}
class Solution {
public:
  vector<int> getStrongest(vector<int>& arr, int k) {
    sort(arr.begin(), arr.end());
    int m = arr[(arr.size() - 1) >> 1];
    sort(arr.begin(), arr.end(), [&](int a, int b) {
      int x = abs(a - m), y = abs(b - m);
      return x == y ? a > b : x > y;
    });
    vector<int> ans(arr.begin(), arr.begin() + k);
    return ans;
  }
};
func getStrongest(arr []int, k int) []int {
  sort.Ints(arr)
  m := arr[(len(arr)-1)>>1]
  sort.Slice(arr, func(i, j int) bool {
    x, y := abs(arr[i]-m), abs(arr[j]-m)
    if x == y {
      return arr[i] > arr[j]
    }
    return x > y
  })
  return arr[:k]
}

func abs(x int) int {
  if x < 0 {
    return -x
  }
  return x
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文