UVa 1153 - Keep the Customer Satisfied(贪心)

给出订单需要时间和截止时间,求最多能完成多少,hint给了很详细的提示。

先按照截止日期排序,然后单次遍历,每次当前订单耗时小于之前订单最大值时,用当前订单替换耗时最长的订单,最终得到最优解。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include<cstdio>
#include<algorithm>
#include<vector>
#include<queue>
using namespace std;
const int maxn=800010;
struct order{
int q,d;
order(int q=0,int d=0):q(q),d(d){};
bool operator < (const order& x) const {
if(d!=x.d) return d<x.d;
return q<x.q;
}
};
order a[maxn];
priority_queue<int> b;
int main(){
int t;
scanf("%d",&t);
while(t--){
while(!b.empty()) b.pop();
int n,sum=0;
scanf("%d",&n);
for(int i=0;i<n;++i)
scanf("%d%d",&a[i].q,&a[i].d);
sort(a,a+n);
for(int i=0;i<n;++i){
if(sum+a[i].q<=a[i].d){
sum+=a[i].q;
b.push(a[i].q);
}
else if(!b.empty()&&b.top()>a[i].q){
sum-=b.top(),b.pop();
sum+=a[i].q;
b.push(a[i].q);
}
}
printf("%d\n",(int)b.size());
if(t) printf("\n");
}
return 0;
}

** 本文迁移自我的CSDN博客,格式可能有所偏差。 **