OJ 26217 :Work Scheduling(贪心+优先队列)
Farmer John has so very many jobs to do! In order to run the farm efficiently, he must make money on the jobs he does, each one of which takes just one time unit.
His work day starts at time 0 and has 1,000,000,000 time units (!). He currently can choose from any of N (1 ≤ N ≤ 100,000) jobs conveniently numbered 1..N for work to do. It is possible but extremely unlikely that he has time for all Njobs since he can only work on one job during any time unit and the deadlines tend to fall so that he can not perform all the tasks.
Job i has deadline Di (1 ≤ Di ≤ 1,000,000,000). If he finishes job i by then, he makes a profit of Pi (1 ≤ Pi ≤ 1,000,000,000).
What is the maximum total profit that FJ can earn from a given list of jobs and deadlines? The answer might not fit into a 32-bit integer.
Multipel test cases. For each case :
* Line 1: A single integer: N
* Lines 2..N+1: Line i+1 contains two space-separated integers: Di and Pi
For each case, output one line : A single number on a line by itself that is the maximum possible profit FJ can earn.
3
2 10
1 5
1 7
17
Complete job 3 (1, 7) at time 1 and complete job 1 (2, 10) at time 2 to maximize the earnings (7 + 10 → 17).
这道题的贪心的策略就是:
先把所有的价值都加进去.然后同步统计一个now统计时间.
如果当前时间已经超过了实现,那么我们就减掉价值最小的.
然后这个价值最小的用一个堆就可以维护.
AC代码:
![](https://images.cnblogs.com/OutliningIndicators/ContractedBlock.gif)
#include<stdio.h> #include<queue> #include<vector> #include<algorithm> using namespace std; #define ll long long #define MAX 100008 struct nod { ll d; ll p; }a[MAX]; bool cmp (nod a,nod b) { if(a.d!=b.d) return a.d<b.d; return a.p<b.p; } int main() { int n; while(scanf("%d",&n)!=EOF) { priority_queue<int,vector<int>,greater<int> >q; for(int i=0 ; i<n ; i++) scanf("%d%d",&a[i].d,&a[i].p); sort(a,a+n,cmp); ll sum=0; ll now=0; for(int i=0 ; i<n ; i++) { now++; sum+=a[i].p; q.push(a[i].p); if(now>a[i].d) { sum-=q.top(); q.pop(); now--; } } printf("%lld\n",sum); } }