标签:起点 nbsp define 算法 temp names \n print ace
第1行:1个数N,线段的数量(2 <= N <= 10000) 第2 - N + 1行:每行2个数,线段的起点和终点(-10^9 <= S,E <= 10^9)
输出最多可以选择的线段数量。
3 1 5 2 3 3 6
2
代码如下:
#include<cstdio>
#include<algorithm>
#define MAXN 100010
using namespace std;
struct node
{
int l, r;
};
bool cmp(node a, node b)
{
return a.r < b.r;
}
node num[MAXN];
int main()
{
int n;
while (scanf("%d", &n) != EOF)
{
for (int i = 0; i < n; i++)
scanf("%d%d", &num[i].l, &num[i].r);
sort(num, num + n, cmp);
int ans = 0;
if (n>0)
{
ans = 1;
int temp = num[0].r;
for (int i = 0; i < n;i++)
if (num[i].l >= temp)
{
temp = num[i].r;
ans++;
}
}
printf("%d\n", ans);
}
return 0;
}
标签:起点 nbsp define 算法 temp names \n print ace
原文地址:https://www.cnblogs.com/ALINGMAOMAO/p/9433024.html