51nod 1428 活动安排问题 贪心(两种方法)

13 篇文章 0 订阅
12 篇文章 0 订阅
有若干个活动,第i个开始时间和结束时间是[Si,fi),同一个教室安排的活动之间不能交叠,求要安排所有活动,最少需要几个教室? 
Input
第一行一个正整数n (n <= 10000)代表活动的个数。
第二行到第(n + 1)行包含n个开始时间和结束时间。
开始时间严格小于结束时间,并且时间都是非负整数,小于1000000000
Output
一行包含一个整数表示最少教室的个数。
Input示例
3
1 2
3 4
2 9
Output示例

2

/*
思路:按照活动开始时间从小到大排序,每当正在被安排
的活动的开始时间与之前每个教室里最后一个活动的结束时间
冲突时就增加一个教室 
*/
#include<bits/stdc++.h>
using namespace std;
const int maxn=1e4+5;
struct node
{
	int s,e;
}p[maxn];
int cmp(node x,node y)
{
	return x.s<y.s;
}
int main()
{
	int n;
	cin>>n;
	for(int i= 0;i<n;i++){
		cin>>p[i].s>>p[i].e;
	}
	sort(p,p+n,cmp);
	int cnt = 0,j =0;
	int ends[n];
	ends[0]=p[0].e;
	for(int i = 1;i<n;i++)
	{
		j =0;
		while(j<=cnt)
		{
			if(p[i].s>=ends[j])
			{
				ends[j]=p[i].e;
				break;
			}
			else if(j==cnt&&p[i].s<ends[j])
			{
				cnt++;
				ends[cnt]=p[i].e;
				break;
			}
			j++;
		}
	}
	cout<<cnt+1<<endl;
	return 0;
}
/*
3
1 2
3 4
2 9
*/ 
优先队列:
/*
先按照开始时间升序排列,将第一个结束时间push进最小堆中,如果接下来的开始时间比堆顶元素大
则pop堆顶元素,否则压入新的元素并且+1 
*/
#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int maxn=1e4+5;
struct node
{
	int s,e;
}q[maxn];
int n;
bool cmp(node a,node b)
{
	if(a.s<b.s) return true;
	if(a.s==b.s) return a.e<b.e;
	return false;
}
int main()
{
	int ans = 0;
	cin>>n;
	for(int i =0;i<n;i++)
		cin>>q[i].s>>q[i].e;
	sort(q,q+n,cmp);
	priority_queue<int,vector<int>,greater<int> >que;
	while(!que.empty()) que.pop();
	que.push(q[0].e);
	ans = 1;
	for(int i =1;i<n;i++)
	{
		int t =que.top();
		if(q[i].s>=t)
		{
			que.pop();
			que.push(q[i].e);
		}
		else {
			ans++;
			que.push(q[i].e);
		}
	}
	cout<<ans<<endl;
	return 0;
}
/*
3
1 2
3 4
2 9
*/ 


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值