麻豆小视频在线观看_中文黄色一级片_久久久成人精品_成片免费观看视频大全_午夜精品久久久久久久99热浪潮_成人一区二区三区四区

首頁 > 學院 > 開發(fā)設(shè)計 > 正文

502. IPO

2019-11-11 02:13:37
字體:
供稿:網(wǎng)友

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 mostk distinct projects before the IPO. Help LeetCode design the best way to maximize its total capital after finishing at mostk distinct projects.

You are given several projects. For each project i, it has a pure profitPi and a minimum capital of Ci is needed to start the corresponding project. Initially, you haveW 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: 4Explanation: 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.

Subscribe to see which companies asked this question.

初始資金為W,最多進行k次項目,后面給出n個項目的收益和需要的資金,問最大的收益。用貪心算法。對于每一次項目,都選最優(yōu)的做,即選擇需要資金小于或等于當前資金的項目中收益最大的。為了減少搜索的時間,用兩個優(yōu)先隊列,其中pq1按需要資金從小到大排序,一開始存放全部的項目(項目用(需要資金,收益)來表示);另一個pq2按收益 從大到小排序,存放當前能做的項目。對于某一次選擇,將pq1中需要資金小于等于當前資金的項目pop出來push進pq2,然后選擇pq2的top項目(也要pop出來),該項目就是當前最佳的項目。

代碼:

class Solution{public:	int findMaximizedCapital(int k, int W, vector<int>& Profits, vector<int>& Capital)	{		auto cmp1 = [](const pair<int, int>& lhs, const pair<int, int>& rhs) -> bool { return lhs.first > rhs.first; };		priority_queue<pair<int, int>, vector<pair<int, int> >, function<bool (const pair<int, int>&, const pair<int, int>&)> > pq1(cmp1);		auto cmp2 = [](const pair<int, int>& lhs, const pair<int, int>& rhs) -> bool { return lhs.second < rhs.second; };		priority_queue<pair<int, int>, vector<pair<int, int> >, function<bool (const pair<int, int>&, const pair<int, int>&)> > pq2(cmp2);		for(int i = 0; i < Profits.size(); ++i)		{			pq1.push(pair<int, int>(Capital[i], Profits[i]));		}		int res = W;		while(--k >= 0)		{			while(!pq1.empty() && pq1.top().first <= res)			{				pq2.push(pq1.top());				pq1.pop();			}			if(pq2.empty()) break;			res += pq2.top().second;			pq2.pop();		}		return res;	}};


發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 97超级碰碰人国产在线观看 | 日本精品视频一区二区三区四区 | 亚洲aⅴ在线观看 | 欧美精品欧美极品欧美激情 | 亚洲白嫩在线观看 | 黑人三级毛片 | 青草av.久久免费一区 | 欧美一级黄色录像片 | 午夜av男人的天堂 | 毛片小网站 | 中文字幕 日本 | 国产日产精品久久久久快鸭 | 欧美日韩在线中文字幕 | 亚洲免费视频大全 | 国产精品午夜性视频 | 欧美成人免费电影 | 污视频在线看 | 蜜桃视频网站在线观看 | 国产羞羞视频免费在线观看 | 成年免费视频黄网站在线观看 | 欧美成人午夜影院 | 成人免费影院 | 国产色爱综合网 | 日韩美女电影 | 久久国产精品久久久久久电车 | 久久久精品视频网站 | 久久精品亚洲成在人线av网址 | 国产91九色视频 | 黄网站色成年大片免费高 | 日日草夜夜 | 国内精品国产三级国产a久久 | 毛片免费大全短视频 | 99久久精品免费 | 黄网站色成年大片免费高 | 欧日韩 | 国产69久久久 | 国产精品久久久久久影视 | 最新黄色电影网站 | www.com香蕉 | www.三区| 欧美一区二区三区久久精品视 |