LeetCode 502. IPO (Java版; Hard)

本文详细解析了LeetCode上的IPO问题,通过成本小根堆和利润大根堆的策略,设计了一种算法来帮助公司选择最有利可图的项目组合,以最大化资本增长。示例展示了如何在有限资源下,挑选最佳项目实现资本最大化。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

welcome to my blog

LeetCode 502. IPO (Java版; Hard)

题目描述
Suppose LeetCode will start its IPO soon. In order to sell a good price of its shares to Venture Capital,
LeetCode would like to work on some projects to increase its capital before the IPO. Since it has limited
resources, it can only finish at most k distinct projects before the IPO. Help LeetCode design the best 
way to maximize its total capital after finishing at most k distinct projects.

You are given several projects. For each project i, it has a pure profit Pi and a minimum capital of Ci is
needed to start the corresponding project. Initially, you have W capital. When you finish a project, you 
will obtain its pure profit and the profit will be added to your total capital.

To sum up, pick a list of at most k distinct projects from given projects to maximize your final capital, 
and output your final maximized capital.

Example 1:
Input: k=2, W=0, Profits=[1,2,3], Capital=[0,1,1].

Output: 4

Explanation: Since your initial capital is 0, you can only start the project indexed 0.
             After finishing it you will obtain profit 1 and your capital becomes 1.
             With capital 1, you can either start the project indexed 1 or the project indexed 2.
             Since you can choose at most 2 projects, you need to finish the project indexed 2 to get the maximum capital.
             Therefore, output the final maximized capital, which is 0 + 1 + 3 = 4.
Note:
You may assume all numbers in the input are non-negative integers.
The length of Profits array and Capital array will not exceed 50,000.
The answer is guaranteed to fit in a 32-bit signed integer.
第一次做; 核心: 1) 成本的小根堆, 利润的大根堆; 将资金可承受的项目放入按照利润排行的大根堆中 2) 纯利润是指: 去掉成本后能挣的钱 3) 使用lambda表达式写比较器很方便
/*
以成本为参考, 将项目放入小根堆
以利润为参考, 将项目放入大根堆
这样分别考虑的缺点是, 大根堆的堆顶元素成本可能大于W....
先选出W能承受的项目, 再将这些项目加入大根堆, 这样大根堆中的项目就是W能支付的了, 并且堆顶的利润最高
*/
class Solution {
    class Project{
        int profit;
        int capital;
        Project(int profit, int capital){
            this.profit = profit;
            this.capital = capital;
        }
    }

    public int findMaximizedCapital(int k, int W, int[] Profits, int[] Capital) {
        int n = Profits.length;
        PriorityQueue<Project> minHeap = new PriorityQueue<>((a,b)->a.capital-b.capital);//成本的小根堆
        PriorityQueue<Project> maxHeap = new PriorityQueue<>((a,b)->b.profit-a.profit);//利润的大根堆
        for(int i=0; i<n; i++){
            minHeap.add(new Project(Profits[i], Capital[i]));
        }
        
        for(int i=0; i<k; i++){
            while(!minHeap.isEmpty() && W >= minHeap.peek().capital){
                maxHeap.add(minHeap.poll());
            }
            if(maxHeap.isEmpty()){
                break;
            }
            W = W + maxHeap.poll().profit;

        }
        return W;

    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值