comments | difficulty | edit_url | rating | source | tags | |||
---|---|---|---|---|---|---|---|---|
true |
中等 |
1685 |
第 288 场周赛 Q3 |
|
给你一个非负整数数组 nums
和一个整数 k
。每次操作,你可以选择 nums
中 任一 元素并将它 增加 1
。
请你返回 至多 k
次操作后,能得到的 nums
的 最大乘积 。由于答案可能很大,请你将答案对 109 + 7
取余后返回。
示例 1:
输入:nums = [0,4], k = 5 输出:20 解释:将第一个数增加 5 次。 得到 nums = [5, 4] ,乘积为 5 * 4 = 20 。 可以证明 20 是能得到的最大乘积,所以我们返回 20 。 存在其他增加 nums 的方法,也能得到最大乘积。
示例 2:
输入:nums = [6,3,3,2], k = 2 输出:216 解释:将第二个数增加 1 次,将第四个数增加 1 次。 得到 nums = [6, 4, 3, 3] ,乘积为 6 * 4 * 3 * 3 = 216 。 可以证明 216 是能得到的最大乘积,所以我们返回 216 。 存在其他增加 nums 的方法,也能得到最大乘积。
提示:
1 <= nums.length, k <= 105
0 <= nums[i] <= 106
根据题目描述,要使得乘积最大,我们需要尽量增大较小的数,因此我们可以使用小根堆来维护数组
时间复杂度
class Solution:
def maximumProduct(self, nums: List[int], k: int) -> int:
heapify(nums)
for _ in range(k):
heapreplace(nums, nums[0] + 1)
mod = 10**9 + 7
return reduce(lambda x, y: x * y % mod, nums)
class Solution {
public int maximumProduct(int[] nums, int k) {
PriorityQueue<Integer> pq = new PriorityQueue<>();
for (int x : nums) {
pq.offer(x);
}
while (k-- > 0) {
pq.offer(pq.poll() + 1);
}
final int mod = (int) 1e9 + 7;
long ans = 1;
for (int x : pq) {
ans = (ans * x) % mod;
}
return (int) ans;
}
}
class Solution {
public:
int maximumProduct(vector<int>& nums, int k) {
priority_queue<int, vector<int>, greater<int>> pq;
for (int x : nums) {
pq.push(x);
}
while (k-- > 0) {
int smallest = pq.top();
pq.pop();
pq.push(smallest + 1);
}
const int mod = 1e9 + 7;
long long ans = 1;
while (!pq.empty()) {
ans = (ans * pq.top()) % mod;
pq.pop();
}
return static_cast<int>(ans);
}
};
func maximumProduct(nums []int, k int) int {
h := hp{nums}
for heap.Init(&h); k > 0; k-- {
h.IntSlice[0]++
heap.Fix(&h, 0)
}
ans := 1
for _, x := range nums {
ans = (ans * x) % (1e9 + 7)
}
return ans
}
type hp struct{ sort.IntSlice }
func (hp) Push(any) {}
func (hp) Pop() (_ any) { return }
function maximumProduct(nums: number[], k: number): number {
const pq = new MinPriorityQueue();
nums.forEach(x => pq.enqueue(x));
while (k--) {
const x = pq.dequeue().element;
pq.enqueue(x + 1);
}
let ans = 1;
const mod = 10 ** 9 + 7;
while (!pq.isEmpty()) {
ans = (ans * pq.dequeue().element) % mod;
}
return ans;
}
/**
* @param {number[]} nums
* @param {number} k
* @return {number}
*/
var maximumProduct = function (nums, k) {
const pq = new MinPriorityQueue();
nums.forEach(x => pq.enqueue(x));
while (k--) {
const x = pq.dequeue().element;
pq.enqueue(x + 1);
}
let ans = 1;
const mod = 10 ** 9 + 7;
while (!pq.isEmpty()) {
ans = (ans * pq.dequeue().element) % mod;
}
return ans;
};