zhber
有好多做过的题没写下来,如果我还能记得就补吧

Description

Farmer John has N cows that need to be milked (1 <= N <= 10,000), each of which takes only one unit of time to milk. Being impatient animals, some cows will refuse to be milked if Farmer John waits too long to milk them. More specifically, cow i produces g_i gallons of milk (1 <= g_i <= 1000), but only if she is milked before a deadline at time d_i (1 <= d_i <= 10,000). Time starts at t=0, so at most x total cows can be milked prior to a deadline at time t=x. Please help Farmer John determine the maximum amount of milk that he can obtain if he milks the cows optimally. 
 
 

 

Input

* Line 1: The value of N. 
* Lines 2..1+N: Line i+1 contains the integers g_i and d_i.

 

Output

* Line 1: The maximum number of gallons of milk Farmer John can obtain.

 

Sample Input

4
10 3
7 5
8 1
2 1
INPUT DETAILS: There are 4 cows. The first produces 10 gallons of milk if milked by time 3, and so on.

Sample Output

25
OUTPUT DETAILS: Farmer John milks cow 3 first, giving up on cow 4 since she cannot be milked by her deadline due to the conflict with cow 3. Farmer John then milks cows 1 and 2.
 
 
倒序加入堆里,每次取出个价值最大的
 1 #include<cstdio>
 2 #include<iostream>
 3 #include<queue>
 4 #include<algorithm>
 5 #include<cstdlib>
 6 using namespace std;
 7 priority_queue<int> q;
 8 int n,tm,num,ans;
 9 struct dat{int c,w;}a[100100];
10 bool operator <(const dat &a,const dat &b){return a.c>b.c;}
11 int main()
12 {
13     q.empty();
14     scanf("%d",&n);
15     for (int i=1;i<=n;i++)scanf("%d%d",&a[i].w,&a[i].c);
16     sort(a+1,a+n+1);
17     tm=a[1].c;q.push(a[1].w);num=1;
18     a[n+1].w=0;a[n+1].c=0;
19     for (int i=2;i<=n+1;i++)
20     {
21         int go=min(tm-a[i].c,num);
22         while (go!=0)ans+=q.top(),q.pop(),num--,go--;
23         q.push(a[i].w);num++;tm=a[i].c;
24     }
25     printf("%d\n",ans);
26 }
bzoj4096

 

posted on 2015-09-28 22:45  zhber  阅读(184)  评论(0编辑  收藏  举报