最大相容活动子集合 贪心法

 主要学习sort的用法和贪心法

测试例:

11
1 4
3 5
5 7
0 6
3 8
5 9
8 11
6 10
8 12
2 13
12 14


#include 
#include 		//sort函数的头文件
using namespace std;
struct action{
	int s;		//起始时间
	int f;		//终止时间
	int index;	//活动编号
};
action a[1010];
int n;

//把const去掉也不报错
bool comp(const action &a,const action &b)
{
    return a.f <= b.f ? true: false;
}
int forjob() 
{
    int num = 1;			//第一个活动是必选
	sort(a, a + n, comp);	//根据终止时间排序
    int temp = 0;
	cout<= a[temp].f){
			num++;
            temp = i;
			cout<<" "<>n;
	for(i = 0; i < n; i++){
		cin>>a[i].s>>a[i].f;
		a[i].index = i;
	}
    forjob();
    return 0;
}



你可能感兴趣的:(ACM经典问题及练习)