bzoj1029

Posted 新手-周

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bzoj1029相关的知识,希望对你有一定的参考价值。

堆+贪心(优先队列)

我们先按t2升序排一遍,对于每栋建筑如果可以抢修就修,如果不能就看它是否比之前最大的更优,如果更优,就替换。

技术分享
#include <stdio.h>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <queue>
#include <vector>
using namespace std;
typedef long long LL;
const int maxn=150000+10;
struct hh
{
  LL a,b;
}e[maxn];
int n;
LL ans,sum;
priority_queue<LL>q;
template <class T> void read(T&x)
{
  x=0;char c=getchar();int f=0;
  while(c<0||c>9){f|=(c==-);c=getchar();}
  while(c>=0&&c<=9)x=(x<<3)+(x<<1)+(c^48),c=getchar();
  x=f?-x:x;
}
bool cmp(const hh&a,const hh&b){return a.b<b.b;}
int main()
{
  read(n);
  for(register int i=1;i<=n;i++){read(e[i].a);read(e[i].b);}
  sort(e+1,e+1+n,cmp);
  for(register int i=1;i<=n;i++)
  {
      if(sum+e[i].a<e[i].b)sum+=e[i].a,ans++,q.push(e[i].a);
      else if(e[i].a<q.top())
      {
        sum-=q.top();q.pop();
        sum+=e[i].a;q.push(e[i].a);
    }
  }
  printf("%lld",ans);
  return 0;
}
View Code

 

以上是关于bzoj1029的主要内容,如果未能解决你的问题,请参考以下文章

AC日记——[JSOI2007]建筑抢修 bzoj 1029

bzoj 1029: [JSOI2007]建筑抢修 贪心

bzoj千题计划119:bzoj1029: [JSOI2007]建筑抢修

BZOJ1029: [JSOI2007]建筑抢修(贪心)

bzoj 1029

[BZOJ1029][JSOI2007]建筑抢修