UVa 1153:Keep the Customer Satisifed(贪心)

9 篇文章 0 订阅

题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=845&page=show_problem&problem=3594

题意:有n (n800000) 个工作,已知每个工作需要的时间 qi 和截止时间 di (必须在此之前完成),最多能完成多少个工作?工作只能串行完成。第一项任务开始的时间不早于时刻0。(本段摘自《算法竞赛入门经典(第2版)》)

分析:
       按照截止时间排序,对于当前工作,如果可以在截止时间之前完成就直接完成,如果不可以的话,从已完成项目中选择一个需要时间最长的取消,将当前工作放进去。对于处理工作时间最长的项目可以用优先队列来实现。

代码:

#include <iostream>
#include <algorithm>
#include <fstream>
#include <cstring>
#include <vector>
#include <queue>
#include <cmath>
#include <stack>

using namespace std;

const int maxn = 800000 + 5;

struct node
{
    int l, d;
    bool operator < (const node& right) const
    {
        return d < right.d; 
    }
};

int T, n, t;
node a[maxn];

int main()
{
    scanf("%d", &T);
    for (int C = 0; C < T; ++C)
    {
        if (C)
            printf("\n");
        scanf("%d", &n);
        for (int i = 0; i < n; ++i)
            scanf("%d%d", &a[i].l, &a[i].d);
        sort(a, a + n);
        t = 0;
        priority_queue< int > q;
        for (int i = 0; i < n; ++i)
            if (t + a[i].l <= a[i].d)
            {
                t += a[i].l;
                q.push(a[i].l);
            }
            else if (!q.empty())
            {
                if (q.top() > a[i].l && (t - q.top() + a[i].l <= a[i].d))
                {
                    t -= q.top();
                    q.pop();
                    t += a[i].l;
                    q.push(a[i].l);
                }
            }
        printf("%d\n", q.size());
    }
    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值