天天看点

算法5.1 计算活动安排问题的贪心算法

#include <iostream>
using namespace std;

struct action{
	int s;
	int f;
	int index;
};

bool cmp(const action &a, const action &b)
{
	if (a.f<=b.f) return true;
	return false;
}


void GreedySelector(int n, action a[], bool b[])
{
	b[1] = true;
	int preEnd = 1;
	for(int i=2; i<=n; i++)
		if (a[i].s>=a[preEnd].f)
		{
			b[i] = true;
			preEnd = i;
		}
}

int main()
{
	int n;
	while(scanf("%d",&n) && n)
	{
		action a[1000];
		bool b[1000];
		memset(b,false,sizeof(b));
		for(int i=1; i<=n; i++)
		{
			scanf("%d%d",&a[i].s,&a[i].f);
			a[i].index = i;
		}
		sort(a, a+n+1, cmp);
		GreedySelector(n, a, b);
		for(int i=1; i<=n;i++)
			if(b[i]) printf("%d ",a[i].index);
		printf("\n");
	}
	return 0;
}
           

继续阅读