每日一题 2023.10.28

2558. 从数量最多的堆取走礼物 - 力扣(LeetCode) 

直接用优先队列 按题意操作即可

class Solution {
public:
    long long pickGifts(vector& gifts, int k) {
        priority_queue heap(gifts.begin(),gifts.end());
        for(int i=0;i

你可能感兴趣的:(每日一题,算法,leetcode,数据结构,c语言,c++)