LeetCode | Heap | 502.

502. IPO

是贪心算法in general。

一共两个变量:profit和capital。profit要求是找最大的。capital要求小于w。

两种筛选方法:把capital符合要求的排个序,找profit最大的。按照profit排序,从大到小找capital满足条件的。

哪种更好?

排序一定要用pq吗?

答题:这道题需要排序,又需要相对快速的push和pop。vector搭配sort每次插入都是logN。又不能直接hash map,因为没有排序。想要又有排序又有快速插入还可以用multimap。不懂为什么这道题不用。

因为w只会增加,所以可以一直从capital的pq往profit的pq里push

关于heap vs pq:

 A Heap is a special Tree-based data structure in which the tree is a complete binary tree

priority queue is a container adaptor that provides constant time lookup of the largest (by default) element, at the expense of logarithmic insertion and extraction

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值