【POJ3190】Stall Reservations
【摘要】
problem
n头奶牛要在指定的时间内吃草,而一个机器只能同时给一个奶牛吃草。给你每头奶牛吃草的开始时间和结束时间,问你最小需要多少机器和每头牛对应的方案。 n<=5e4;
solution ...
problem
n头奶牛要在指定的时间内吃草,而一个机器只能同时给一个奶牛吃草。给你每头奶牛吃草的开始时间和结束时间,问你最小需要多少机器和每头牛对应的方案。 n<=5e4;
solution
按照开始吃草的时间将牛排序。
维护一个数组S,记录当前每个机器安排的最后一头牛。
对于每头牛,扫描S,找到一个满足的丢进去,如果没有就新建。
原始复杂度O(n^2),用一个小跟堆维护最后一头牛结束吃草的时间,即可优化到O(nlogn)。
codes
#include<iostream>
#include<algorithm>
#include<queue>
using namespace std;
const int maxn = 50050;
struct cow{
int l, r, id;
bool operator < (const cow &b)const{
return r>b.r;
}
}a[maxn]; int belong[maxn];
bool cmp(cow a, cow b){ return a.l < b.l; }
priority_queue<cow>q;
int main(){
int n; cin>>n;
for(int i = 1; i <= n; i++)
cin>>a[i].l>>a[i].r, a[i].id=i;
sort(a+1, a+n+1, cmp);
int ans = 1; q.push(a[1]); belong[a[1].id] = 1;
for(int i = 2; i <= n; i++){
if(!q.empty() && q.top().r < a[i].l){
belong[a[i].id] = belong[q.top().id];
q.pop();
q.push(a[i]);
}else{
belong[a[i].id] = ++ans;
q.push(a[i]);
}
}
cout<<ans<<'\n';
for(int i = 1; i <= n; i++)
cout<<belong[i]<<'\n';
return 0;
}
- 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
文章来源: gwj1314.blog.csdn.net,作者:小哈里,版权归原作者所有,如需转载,请联系作者。
原文链接:gwj1314.blog.csdn.net/article/details/80398242
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)