已AC代码:
#include<cstdio>
#include<algorithm>
using namespace std;
struct Things
{
int s;
int f;
}t[10005];
bool compare(const Things& a, const Things& b)
{
return a.f < b.f;
}
int main()
{
int m;
scanf("%d", &m);
while(m--)
{
int n, cont=1, temp;
scanf("%d", &n);
for(int i=0; i<n; i++)
{
scanf("%d%d", &t[i].s, &t[i].f);
}
sort(t, t+n, compare);
temp = t[0].f;
for(int i=1; i<n; i++)
{
if((t[i].s-temp) >= 1)
{
cont++;
temp = t[i].f;
}
}
printf("%d\n", cont);
}
return 0;
}