返回介绍

solution / 0300-0399 / 0360.Sort Transformed Array / README_EN

发布于 2024-06-17 01:04:01 字数 4347 浏览 0 评论 0 收藏 0

360. Sort Transformed Array

中文文档

Description

Given a sorted integer array nums and three integers a, b and c, apply a quadratic function of the form f(x) = ax2 + bx + c to each element nums[i] in the array, and return _the array in a sorted order_.

 

Example 1:

Input: nums = [-4,-2,2,4], a = 1, b = 3, c = 5
Output: [3,9,15,33]

Example 2:

Input: nums = [-4,-2,2,4], a = -1, b = 3, c = 5
Output: [-23,-5,1,7]

 

Constraints:

  • 1 <= nums.length <= 200
  • -100 <= nums[i], a, b, c <= 100
  • nums is sorted in ascending order.

 

Follow up: Could you solve it in O(n) time?

Solutions

Solution 1

class Solution:
  def sortTransformedArray(
    self, nums: List[int], a: int, b: int, c: int
  ) -> List[int]:
    def f(x):
      return a * x * x + b * x + c

    n = len(nums)
    i, j, k = 0, n - 1, 0 if a < 0 else n - 1
    res = [0] * n
    while i <= j:
      v1, v2 = f(nums[i]), f(nums[j])
      if a < 0:
        if v1 <= v2:
          res[k] = v1
          i += 1
        else:
          res[k] = v2
          j -= 1
        k += 1
      else:
        if v1 >= v2:
          res[k] = v1
          i += 1
        else:
          res[k] = v2
          j -= 1
        k -= 1
    return res
class Solution {
  public int[] sortTransformedArray(int[] nums, int a, int b, int c) {
    int n = nums.length;
    int i = 0, j = n - 1, k = a < 0 ? 0 : n - 1;
    int[] res = new int[n];
    while (i <= j) {
      int v1 = f(a, b, c, nums[i]), v2 = f(a, b, c, nums[j]);
      if (a < 0) {
        if (v1 <= v2) {
          res[k] = v1;
          ++i;
        } else {
          res[k] = v2;
          --j;
        }
        ++k;
      } else {
        if (v1 >= v2) {
          res[k] = v1;
          ++i;
        } else {
          res[k] = v2;
          --j;
        }
        --k;
      }
    }
    return res;
  }

  private int f(int a, int b, int c, int x) {
    return a * x * x + b * x + c;
  }
}
class Solution {
public:
  vector<int> sortTransformedArray(vector<int>& nums, int a, int b, int c) {
    int n = nums.size();
    int i = 0, j = n - 1, k = a < 0 ? 0 : n - 1;
    vector<int> res(n);
    while (i <= j) {
      int v1 = f(a, b, c, nums[i]), v2 = f(a, b, c, nums[j]);
      if (a < 0) {
        if (v1 <= v2) {
          res[k] = v1;
          ++i;
        } else {
          res[k] = v2;
          --j;
        }
        ++k;
      } else {
        if (v1 >= v2) {
          res[k] = v1;
          ++i;
        } else {
          res[k] = v2;
          --j;
        }
        --k;
      }
    }
    return res;
  }

  int f(int a, int b, int c, int x) {
    return a * x * x + b * x + c;
  }
};
func sortTransformedArray(nums []int, a int, b int, c int) []int {
  n := len(nums)
  i, j, k := 0, n-1, 0
  if a >= 0 {
    k = n - 1
  }
  res := make([]int, n)
  for i <= j {
    v1, v2 := f(a, b, c, nums[i]), f(a, b, c, nums[j])
    if a < 0 {
      if v1 <= v2 {
        res[k] = v1
        i++
      } else {
        res[k] = v2
        j--
      }
      k++
    } else {
      if v1 >= v2 {
        res[k] = v1
        i++
      } else {
        res[k] = v2
        j--
      }
      k--
    }
  }
  return res
}

func f(a, b, c, x int) int {
  return a*x*x + b*x + c
}

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

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

发布评论

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