「BZOJ1029」[JSOI2007] 建筑抢修
Description
小刚在玩JSOI提供的一个称之为“建筑抢修”的电脑游戏:经过了一场激烈的战斗,T部落消灭了所有z部落的入侵者。但是T部落的基地里已经有N个建筑设施受到了严重的损伤,如果不尽快修复的话,这些建筑设施将会完全毁坏。现在的情况是:T部落基地里只有一个修理工人,虽然他能瞬间到达任何一个建筑,但是修复每个建筑都需要一定的时间。同时,修理工人修理完一个建筑才能修理下一个建筑,不能同时修理多个建筑。如果某个建筑在一段时间之内没有完全修理完毕,这个建筑就报废了。你的任务是帮小刚合理的制订一个修理顺序,以抢修尽可能多的建筑。
Input
第一行是一个整数N,接下来N行每行两个整数T1,T2描述一个建筑:修理这个建筑需要T1秒,如果在T2秒之内还没有修理完成,这个建筑就报废了。
Output
输出一个整数S,表示最多可以抢修S个建筑。 数据范围: N<150000,T1
Sample Input
4
100 200
200 1300
1000 1250
2000 3200
100 200
200 1300
1000 1250
2000 3200
Sample Output
3
题解
为何配对堆和斐波那契堆都不如直接pq快T T
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<queue> #include<vector> using namespace std; priority_queue<int,vector<int>,less<int> > q; int n,now,ans; struct data{int t,ed;}a[150005]; 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; } bool operator<(data a,data b) { return a.ed<b.ed; } int main() { n=read(); for(int i=1;i<=n;i++) { a[i].t=read();a[i].ed=read(); } sort(a+1,a+n+1); for(int i=1;i<=n;i++) if(now+a[i].t<=a[i].ed) { ans++; now+=a[i].t; q.push(a[i].t); } else { int tmp=q.top(); if(a[i].t<tmp) { q.pop(); q.push(a[i].t); now=now-tmp+a[i].t; } } printf("%d",ans); return 0; } |
ndsf传授的优越的stl
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<ext/pb_ds/priority_queue.hpp> using namespace std; using namespace __gnu_pbds; __gnu_pbds::priority_queue<int,less<int>,thin_heap_tag > q; int n,now,ans; struct data{int t,ed;}a[150005]; 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; } bool operator<(data a,data b) { return a.ed<b.ed; } int main() { n=read(); for(int i=1;i<=n;i++) { a[i].t=read();a[i].ed=read(); } sort(a+1,a+n+1); for(int i=1;i<=n;i++) if(now+a[i].t<=a[i].ed) { ans++; now+=a[i].t; q.push(a[i].t); } else { int tmp=q.top(); if(a[i].t<tmp) { q.pop(); q.push(a[i].t); now=now-tmp+a[i].t; } } printf("%d",ans); return 0; } |
黄学长,为啥我直接用大根堆然后插入、弹出的时候取负的做法wa了呢……求指教
0。0 你怎么处理建筑有效时间的呢。。。
我错了,我写成了小根堆……