标签:
2 2 1 10 10 11 3 1 10 10 11 11 20
1 2
#include<stdio.h> #include<algorithm> using namespace std; #define max 10001 struct node { int begin,end; }ab[max]; bool cmp(node a,node b) { return a.end<b.end; } int main() { int m,n; scanf("%d",&m); if(m <100&&m>=0) while(m--) { int sum=1; scanf("%d",&n); for(int i=0;i<n;i++) { scanf("%d%d",&ab[i].begin,&ab[i].end); } sort(ab,ab+n,cmp); int t=ab[0].end; for(int j=1;j<n;j++) { if(ab[j].begin>t) { t=ab[j].end; sum++; } } printf("%d\n",sum); } return 0; }
标签:
原文地址:http://www.cnblogs.com/tt-t/p/5022591.html