标签:
2 2 1 10 10 11 3 1 10 10 11 11 20
1 2
数组记得要开大点
#include<stdio.h> #include<algorithm> using namespace std; struct stu{ int x,y; }; int cmp(stu a,stu b){ return a.y<b.y; } int main() { int n,m,h,i,j,k,a,b,c; stu x[100000]; scanf("%d",&n); while(n--) { scanf("%d",&m); for(i=0;i<m;i++) scanf("%d%d",&x[i].x,&x[i].y); sort(x,x+m,cmp); a=x[0].y; k=1; for(i=1;i<m;i++) { if(a<x[i].x) { k++; a=x[i].y; } } printf("%d\n",k); } return 0; }
版权声明:本文为博主原创文章,未经博主允许不得转载。
标签:
原文地址:http://blog.csdn.net/l15738519366/article/details/47166725