摘要:题目解答还是数学解法,根据这个方程图形的特征来判断最大最小值的取向
题目:
Given a sorted array of integers nums and integer values a, b and c. Apply a function of the form f(x) = ax2 + bx + c to each element x in the array.
The returned array must be in sorted order.
Expected time complexity: O(n)
Example:
nums = [-4, -2, 2, 4], a = 1, b = 3, c = 5,
Result: [3, 9, 15, 33]
nums = [-4, -2, 2, 4], a = -1, b = 3, c = 5
Result: [-23, -5, 1, 7]
解答:
//还是数学解法,根据这个方程图形的特征来判断最大最小值的取向 public int function(int num, int a, int b, int c) { return a * num * num + b * num + c; } public int[] sortTransformedArray(int[] nums, int a, int b, int c) { int len = nums.length; int[] result = new int[len]; int index = a >= 0 ? len - 1 : 0; int i = 0, j = len - 1; while (i <= j) { if (a >= 0) { result[index--] = function(nums[i], a, b, c) >= function(nums[j], a, b, c) ? function(nums[i++], a, b, c) : function(nums[j--], a, b, c); } else { result[index++] = function(nums[i], a, b, c) <= function(nums[j], a, b, c) ? function(nums[i++], a, b, c) : function(nums[j--], a, b, c); } } return result; }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/64928.html
摘要:题目链接这是个数学问题,抛物线,我们知道这时候是个凹函数,两遍的值大于中间,所以从两遍开始哪边的大就把结果放到的右边这时候是个凸函数,两遍的值小于中间,所以两遍开始扫哪边的值小就把它放到的左边这时候是单调增的函数,用上面任意一种方法都可以。 360. Sort Transformed Array 题目链接:https://leetcode.com/problems... 这是个数学问题...
阅读 827·2023-04-25 23:59
阅读 3618·2021-10-08 10:04
阅读 1654·2019-08-30 14:05
阅读 983·2019-08-30 13:58
阅读 458·2019-08-29 18:41
阅读 1074·2019-08-29 17:15
阅读 2303·2019-08-29 14:13
阅读 2726·2019-08-29 13:27