码迷,mamicode.com
首页 > Web开发 > 详细

JSOI2007 建筑抢修(贪心)

时间:2019-10-14 21:08:07      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:type   algorithm   top   最大   贪心   node   遇到   iostream   clu   

满分做法:

按照结束时间从小到大排序,一个一个进行处理。遇到当前时间+处理时间>结束时间的建筑时,把这个建筑和之前修理过的建筑中处理时间最大的进行比较。

如果当前处理时间小于最大值,那么可以进行替换,使当前时间变小,否则就放弃此建筑。剩下的就是直接加进来就可以了。

#include<cstring>
#include<algorithm>
#include<iostream>
#include<cstdio>
#include<cmath>
#include<queue>
#include<vector>
using namespace std;
typedef long long ll;
const int maxm=150007;
int n;
struct node
{
 ll t,ed;
 bool operator < (const node &s) const
 {
    return ed<s.ed;
 }
}a[maxm];
priority_queue<ll>q;
ll k=1;
int ans; 
int main()
{
 scanf("%d",&n);
 for(int i=1;i<=n;i++)
 scanf("%lld%lld",&a[i].t,&a[i].ed);
 sort(a+1,a+n+1); 
 for(int i=1;i<=n;i++)
 {
   if(k+a[i].t>a[i].ed)
   {
    if(a[i].t<q.top())//找之前最大的且小于这个值的进行替换 
    { 
     k-=q.top();
     q.pop();
     k+=a[i].t;
     q.push(a[i].t);
    }
   }
   else
   {
     k+=a[i].t;
     ans++;
     q.push(a[i].t);
   }
 }
 printf("%d\n",ans);
 return 0;
}

JSOI2007 建筑抢修(贪心)

标签:type   algorithm   top   最大   贪心   node   遇到   iostream   clu   

原文地址:https://www.cnblogs.com/lihan123/p/11674069.html

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