其他分享
首页 > 其他分享> > 洛谷 P4053 [JSOI2007]建筑抢修

洛谷 P4053 [JSOI2007]建筑抢修

作者:互联网

题目描述
小刚在玩JSOI提供的一个称之为“建筑抢修”的电脑游戏:经过了一场激烈的战斗,T部落消灭了所有z部落的入侵者。但是T部落的基地里已经有N个建筑设施受到了严重的损伤,如果不尽快修复的话,这些建筑设施将会完全毁坏。现在的情况是:T部落基地里只有一个修理工人,虽然他能瞬间到达任何一个建筑,但是修复每个建筑都需要一定的时间。同时,修理工人修理完一个建筑才能修理下一个建筑,不能同时修理多个建筑。如果某个建筑在一段时间之内没有完全修理完毕,这个建筑就报废了。你的任务是帮小刚合理的制订一个修理顺序,以抢修尽可能多的建筑。

输入格式
第一行是一个整数N,接下来N行每行两个整数T1,T2描述一个建筑:修理这个建筑需要T1秒,如果在T2秒之内还没有修理完成,这个建筑就报废了。

输出格式
输出一个整数S,表示最多可以抢修S个建筑.

题解写代码里啦

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <queue>
#include <cmath>
#define ing long long  
using namespace std;
int n;
struct NODE{
    int t1,t2;
}bui[200000];
inline int read(){
    int x=0,f=1;
    char ch=getchar();
    while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    return x*f;
}
priority_queue<int> pp; 
inline bool cmp(NODE a,NODE b){
    return a.t2<b.t2; 
} 
main(){
    n=read();
    for(int i=1;i<=n;i++){
        bui[i].t1=read();
        bui[i].t2=read();
    }
    sort(bui+1,bui+n+1,cmp);
    int t;
    t=0;
    int maxx=0;
    int ans=0;
    for(int i=1;i<=n;i++){
        if(t+bui[i].t1>bui[i].t2){
            if(bui[i].t1<pp.top()&&t-pp.top()+bui[i].t1<=bui[i].t2){
              t-=pp.top();
              t+=bui[i].t1;
              pp.pop();
              pp.push(bui[i].t1);
           } 
        } 
        else{ 
            pp.push(bui[i].t1);
            ans++;
            t=t+bui[i].t1;
        }
    }   
    printf("%d",ans);
    return 0;
}
/*题里给出了n个建筑
  每个建筑有个报废时间t2
  修复时间为t1 ,很显然这个是先拿t2排序
  然后开始遍历
  如果现在这个不行了,
   */

标签:ch,洛谷,int,抢修,修理,P4053,JSOI2007,include,建筑
来源: https://www.cnblogs.com/southking/p/12371599.html