码迷,mamicode.com
首页 > 其他好文 > 详细

【BZOJ】1572 [Usaco2009 Open]工作安排Job

时间:2016-12-20 23:41:29      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:using   ora   algorithm   include   工作   cst   .com   top   min   

【算法】贪心

【题解】

反过来做更容易理解:http://blog.csdn.net/MintGreenTZ/article/details/52949289

一般写法:http://www.cnblogs.com/ciao-sora/p/5945638.html

http://blog.csdn.net/sunshinezff/article/details/49966035

技术分享
#include<cstdio>
#include<algorithm>
#include<queue>
using namespace std;
const int maxn=100010; 
struct cyc{int time,value;}a[maxn];
priority_queue<int>q;
bool cmp(cyc a,cyc b)
{return a.time>b.time;}
int n;
int main()
{
    scanf("%d",&n);
    for(int i=1;i<=n;i++)scanf("%d%d",&a[i].time,&a[i].value);
    sort(a+1,a+n+1,cmp);
    long long ans=0;int mx=a[1].time;
    for(int i=1;i<=n;i++)
     {
         for(int j=1;j<=mx-a[i].time-1&&!q.empty();j++)ans+=q.top(),q.pop();
         mx=a[i].time;
         q.push(a[i].value);
         if(i<n&&a[i+1].time==a[i].time)continue;
        ans+=q.top(),q.pop();
     }
    for(int j=1;j<=mx-0-1&&!q.empty();j++)ans+=q.top(),q.pop();
    printf("%lld",ans);
    return 0;
}
View Code

 

【BZOJ】1572 [Usaco2009 Open]工作安排Job

标签:using   ora   algorithm   include   工作   cst   .com   top   min   

原文地址:http://www.cnblogs.com/onioncyc/p/6204452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!