【OJ】贪心——区间问题 hzu.acmclub.com 1126看电视

题目链接:点击打开链接

/*
贪心——区间问题 hzu.acmclub.com 1126看电视 
*/
#include
#include
using namespace std;
//typedef pair P;  /////////////用pair
//P tv[101];
//bool comp(P a,const P &b){
////	if(a.second>n&&n){
		for(int i=0;i>tv[i].first>>tv[i].second;//用pair 
			cin>>tv[i].ai>>tv[i].ei;       //用struct 
		}
		sort(tv,tv+n,comp); 
		int ans=0,t=0;
//		for(int j=0;j 
//			if(t<=tv[j].first){
//				ans++;
//				t=tv[j].second;
//			}
//		}
		for(int j=0;j

你可能感兴趣的:(ACM和算法)