解题思路:
注意事项:
参考代码:
#include<iostream>
#include<algorithm>
using namespace std;
struct Node
{
int start,end;
}p[1005];
bool cmp(Node a,Node b){return a.end < b.end;}//升序
int main()
{
int n; cin >> n;
int count = 1;
for(int i = 0; i < n; i++)
{
cin >> p[i].start >> p[i].end;
}
sort(p, p + n, cmp);
int temp = p[0].end;
for(int j = 1; j < n; j++)
{
if(p[j].start >= temp)
{
temp = p[j].end;
count++;
}
}
cout << count;
return 0;
}
0.0分
1 人评分
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:604 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:643 |
Pascal三角 (C语言代码)浏览:1252 |
WU-输出正反三角形 (C++代码)浏览:1099 |
简单的a+b (C语言代码)浏览:878 |
【矩阵】 (C++代码)浏览:999 |
C语言程序设计教程(第三版)课后习题9.6 (C语言代码)浏览:388 |
1642题解浏览:784 |
C语言程序设计教程(第三版)课后习题9.8 (C语言代码)浏览:702 |
P1000 (C语言代码)浏览:911 |