zoukankan      html  css  js  c++  java
  • luogu P2949 [USACO09OPEN]工作调度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 N jobs 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 D_i (1 <= D_i <= 1,000,000,000). If he finishes job i by then, he makes a profit of P_i (1 <= P_i <= 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.

    约翰有太多的工作要做。为了让农场高效运转,他必须靠他的工作赚钱,每项工作花一个单位时间。 他的工作日从0时刻开始,有10^8个单位时间。在任一时刻,他都可以选择编号1~N的N(1 <= N <= 10^6)项工作中的任意一项工作来完成。 因为他在每个单位时间里只能做一个工作,而每项工作又有一个截止日期,所以他很难有时间完成所有N个工作,虽然还是有可能。 对于第i个工作,有一个截止时间D_i(1 <= D_i <= 10^9),如果他可以完成这个工作,那么他可以获利P_i( 1<=P_i<=10^9 ). 在给定的工作利润和截止时间下,约翰能够获得的利润最大为多少.

    输入输出格式

    输入格式:

    • Line 1: A single integer: N

    • Lines 2..N+1: Line i+1 contains two space-separated integers: D_i and P_i

    输出格式:

    • Line 1: A single number on a line by itself that is the maximum possible profit FJ can earn.

    输入输出样例

    输入样例#1: 复制
    3 
    2 10 
    1 5 
    1 7 
    
    输出样例#1: 复制
    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).

     结束点排序后堆维护贪心

    因为是在做DP时做到的,就归为DP吧
    #include<cstdio>
    #include<queue>
    #include<algorithm>
    using namespace std;
    typedef long long LL;
    struct data {
        int d;
        int p;
    } a[100010];
    priority_queue<LL> q;
    bool cmp(data a , data b) {
        return a.d < b.d;
    }
    int main() {
        int n,now=0;
        LL x,ans=0;
        scanf("%d",&n);
        for(int i=1;i<=n;i++)
            scanf("%d%lld",&a[i].d,&a[i].p);
        sort(a+1,a+n+1,cmp);
        for(int i=1;i<=n;i++) {
            if(now<a[i].d)
                q.push(-a[i].p),ans += a[i].p,now ++ ;
            else {
                x=-q.top();
                if(x<a[i].p) {
                    q.pop();
                    ans-=x;
                    q.push(-a[i].p);
                    ans+=a[i].p;
                }
            }
        }
        printf("%lld
    ",ans);
        return 0;
    }
  • 相关阅读:
    产品交付物
    Java对redis的基本操作
    SourceTree使用方法
    分享几套bootstrap后台模板【TP5版】
    ThinkPHP5在PHP7以上使用QueryList4, ThinkCMF在PHP5中使用QueryList3教程
    delphi 控件背景透明代码
    delphi 程序嵌入桌面效果的实现
    delphi 半透明窗体类
    delphi 一个关于xml文件导入数据库的问题
    Delphi 自带了 Base64 编解码的单元
  • 原文地址:https://www.cnblogs.com/sssy/p/7953568.html
Copyright © 2011-2022 走看看