首页 > 其他分享 >[LeetCode] 2530. Maximal Score After Applying K Operations

[LeetCode] 2530. Maximal Score After Applying K Operations

时间:2023-10-18 09:55:09浏览次数:38  
标签:Maximal Operations Applying 10 top nums ceil queue score

You are given a 0-indexed integer array nums and an integer k. You have a starting score of 0.

In one operation:

  1. choose an index i such that 0 <= i < nums.length,
  2. increase your score by nums[i], and
  3. replace nums[i] with ceil(nums[i] / 3).

Return the maximum possible score you can attain after applying exactly k operations.

The ceiling function ceil(val) is the least integer greater than or equal to val.

Example 1:

Input: nums = [10,10,10,10,10], k = 5
Output: 50
Explanation: Apply the operation to each array element exactly once. The final score is 10 + 10 + 10 + 10 + 10 = 50.

Example 2:

Input: nums = [1,10,3,3,3], k = 3
Output: 17
Explanation: You can do the following operations:
Operation 1: Select i = 1, so nums becomes [1,4,3,3,3]. Your score increases by 10.
Operation 2: Select i = 1, so nums becomes [1,2,3,3,3]. Your score increases by 4.
Operation 3: Select i = 2, so nums becomes [1,1,1,3,3]. Your score increases by 3.
The final score is 10 + 4 + 3 = 17.

Constraints:

  • 1 <= nums.length, k <= 105
  • 1 <= nums[i] <= 109

执行 K 次操作后的最大分数。

给你一个下标从 0 开始的整数数组 nums 和一个整数 k 。你的 起始分数 为 0 。

在一步 操作 中:

  1. 选出一个满足 0 <= i < nums.length 的下标 i ,
  2. 将你的 分数 增加 nums[i] ,并且
  3. 将 nums[i] 替换为 ceil(nums[i] / 3) 。

返回在 恰好 执行 k 次操作后,你可能获得的最大分数。

向上取整函数 ceil(val) 的结果是大于或等于 val 的最小整数。

思路是贪心,具体做法会用到一个最大堆。可以将 input 数组里的所有元素都放入最大堆,然后每次弹出堆顶元素 top,将这个元素的值累加到结果 res,然后再把这个元素执行一下操作三,再放回最大堆,如此一套流程执行 K 次之后停止。

时间O(nlogn) - 也可以是O(nlogk),取决于你怎么创建这个最大堆

空间O(n) - 也可以是O(k),取决于你怎么创建这个最大堆

Java实现

 1 class Solution {
 2     public long maxKelements(int[] nums, int k) {
 3         PriorityQueue<Double> queue = new PriorityQueue<>((a, b) -> Double.compare(b, a));
 4         for (int num : nums) {
 5             queue.offer((double) num);
 6         }
 7 
 8         long res = 0;
 9         while (!queue.isEmpty() && k > 0) {
10             double top = queue.poll();
11             res += top;
12             top = Math.ceil(top / 3);
13             queue.offer(top);
14             k--;
15         }
16         return res;
17     }
18 }

 

LeetCode 题目总结

标签:Maximal,Operations,Applying,10,top,nums,ceil,queue,score
From: https://www.cnblogs.com/cnoodle/p/17771372.html

相关文章

  • CF1867D Cyclic Operations
    事实上我们可以发现,如果\(b_i=x\)最后,那么我们可以连一条边,从\(i\)到\(x\)这样我们就得到了一个有向图,在这张有向图呢,可以证明的是如果\(k=1\),那么必须全部都是自环。若不成立,则必须每个环的大小恰好为\(k\)这样就可以解决了。#include<cstdio>#include<iostream>#include<......
  • abc253F - Operations on a Matrix
    F-OperationsonaMatrix初看起来感觉不是很好搞,主要是有赋值操作,我们需要知道的是最近一次在这个行上的赋值操作以及之间的贡献那么我们离线处理,每个3操作都往前找一个最近的同行2操作,然后两个做差就能得到中间的和。#include<algorithm>#include<cstdio>#include<cstrin......
  • [LeetCode] 85. Maximal Rectangle_Hard tag: Dynamic Programming
    Givena rowsxcols binary matrix filledwith 0'sand 1's,findthelargestrectanglecontainingonly 1'sandreturn itsarea. Example1:Input:matrix=[["1","0","1","0","0"],["1&q......
  • CF1867D Cyclic Operations
    前言赛时没调出来,赛后调了一个上午,最后发现是有个地方没清零。思路首先对于位置\(i\),我们必须要保证进行的操作中,最后一次出现\(i\),\(i\)的后面一定是\(a_i\)。那么我们考虑统计所有位置上的要求,用有向边链接,那么就会出现一个有环有向图(一定有环,因为点数等于边数)。那么,自......
  • 1142 Maximal Clique(附测试点1,3错误分析)
    题目:A clique isasubsetofverticesofanundirectedgraphsuchthateverytwodistinctverticesinthecliqueareadjacent.A maximalclique isacliquethatcannotbeextendedbyincludingonemoreadjacentvertex.(Quotedfromhttps://en.wikipedia.or......
  • CF803C Maximal GCD 题解
    题意构造一个长度为\(k\),和为\(n\)的严格单调递增序列,并最大化其最大公约数。(\(1\len,k\le10^{10}\))题解首先可以发现一个事实,这个序列的最大公约数一定为\(n\)的因子。所以我们可以考虑枚举\(n\)的所有因子并判断其能否成为整个序列的最大公约数。假设我们现在枚......
  • LLMOps(Large Language Model Operations)简介
    LLMOps是一个新兴领域,专注于管理大型语言模型的整个生命周期,包括数据管理、模型开发、部署和伦理等方面。HuggingFace、Humanloop和NVIDIA等公司正在引领这一领域的发展。HuggingFace的Transformers库已成为构建和微调各种NLP任务的大型语言模型的首选开源库。类似地,Humanloop......
  • swagger显示示No operations defined in spec的解决
    背景:Spring2.6集成swagger2.0,启动后访问:http://localhost:80/swagger-ui/index.html,报错:Nooperationsdefinedinspec!查询资料的好几种结果:1.swagger解析的包路径配置错误,需要修改basePackage路径,反复查看是正确的。2.扫描的类或者方法上没有配置:@APIZ或者@ApiOpera......
  • AGC063C Add Mod Operations
    感觉是非常纯的思维题。题意给两个长度为\(n\)的序列\(A,B\)。你可以对\(A\)做不超过\(n\)次操作,形如对于所有元素,先加上\(x\)再对\(y\)取模。其中\(0\lex<y\le10^{18}\)是由你决定的任意整数。给出一种方案将\(A\)变成\(B\),或声明无解。\(1\len\le200......
  • Perkins Engines: Reliable Power in Harsh Environments and High-Strength Operatio
    PerkinsEngines:ReliablePowerinHarshEnvironmentsandHigh-StrengthOperationsHelloeveryone!TodayIwouldliketosharewithyouapowerfulenginedesignedtocopewithharshenvironmentsandhigh-intensityworkingconditions-thePerkinsengine.W......