标签:20px pad include ret ace add 难度 tput top
每组的输出占一行
2 2 1 10 10 11 3 1 10 10 11 11 20
1 2
/* 贪心。选择不相交区间。 */ #include <cstdio> #include <algorithm> using namespace std; const int maxn = 10010; struct act { int b,e; }arr[maxn]; int n; bool cmp(act x,act y) //活动结束时间相等,按開始时间从大到小排序。 { //否则按活动结束时间从小到大排序。 if(x.e==y.e) return x.b>y.b; else return x.e<y.e; } int main() { int m,i,count,temp; scanf("%d",&m); while(m--) { scanf("%d",&n); for(i=0;i<n;++i) scanf("%d%d",&arr[i].b,&arr[i].e); sort(arr,arr+n,cmp); count=1; temp=arr[0].e; for(i=1;i<n;++i) { if(arr[i].b>temp)//将上一个结束时间与下一个開始时间对照 { temp=arr[i].e; count++; } } printf("%d\n",count); } return 0; }
标签:20px pad include ret ace add 难度 tput top
原文地址:http://www.cnblogs.com/claireyuancy/p/6849260.html