bzoj 1029

Posted vertbird

tags:

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

贪心经典题。

先把所有建筑按照 t2 排序,然后按顺序枚举每一个建筑:若可以修就修,否则就看一看修当前建筑,不修已经修了的最耗时建筑能否节省时间。

用优先队列维护即可。

#include"cstdio"
#include"cctype"
#include"queue"
#include"algorithm"
using namespace std;
int read()
{
    int c,x=0; while(!isdigit(c=getchar()));
    while(x=x*10+c-0,isdigit(c=getchar()));
    return x;
}
struct building
{
    int t1,t2;
}b[150000];
bool comp(building a,building b)
{
    return a.t2<b.t2;
}
priority_queue<int> h;
int main()
{
    int n=read(),now=0,ans=0;
    for(int i=0;i<n;i++) b[i].t1=read(),b[i].t2=read();
    sort(b,b+n,comp);
    for(int i=0;i<n;i++)
        if(b[i].t2>=b[i].t1+now) now+=b[i].t1,h.push(b[i].t1),ans++;
        else if(b[i].t1<h.top()) now+=b[i].t1-h.top(),h.pop(),h.push(b[i].t1);
    printf("%d",ans);
    return 0;
}

 

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

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

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

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

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

bzoj 1029

[BZOJ1029][JSOI2007]建筑抢修