文章目录
- 1. 题目
- 2. 解题
1. 题目
给你一个整数数组 nums ,和两个整数 limit 与 goal 。
数组 nums 有一条重要属性:abs(nums[i]) <= limit
。
返回使数组元素总和等于 goal 所需要向数组中添加的 最少元素数量 ,添加元素 不应改变 数组中 abs(nums[i]) <= limit
这一属性。
注意,如果 x >= 0 ,那么 abs(x) 等于 x ;否则,等于 -x 。
示例 1:
输入:nums = [1,-1,1], limit = 3, goal = -4
输出:2
解释:可以将 -2 和 -3 添加到数组中,
数组的元素总和变为 1 - 1 + 1 - 2 - 3 = -4 。示例 2:
输入:nums = [1,-10,9,1], limit = 100, goal = 0
输出:1提示:
1 <= nums.length <= 10^5
1 <= limit <= 10^6
-limit <= nums[i] <= limit
-10^9 <= goal <= 10^9
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/minimum-elements-to-add-to-form-a-given-sum
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
2. 解题
- 贪心优先拿绝对值最大的
class Solution {
public:int minElements(vector<int>& nums, int limit, int goal) {long long sum = 0;for(auto n : nums)sum += n;long long dis = abs(sum-goal);return ceil(double(dis)/limit);}
};
128 ms 71.7 MB C++
我的CSDN博客地址 https://michael.blog.csdn.net/
长按或扫码关注我的公众号(Michael阿明),一起加油、一起学习进步!