P1803 凌乱的yyy / 线段覆盖 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)
所需知识:贪心
本来还想用dfs bfs搜索来一点一点做的,看到了大佬的思路之后,直接orz了
整体思路:因为要想尽可能的多参加比赛,所以越早结束比赛对后面留出来的时间就更多,可以参加更多场比赛,所以直接将每场比赛的结束时间按先后排个序,然后第一个比赛是比取的,之后遍历所有比赛,若该比赛的开始时间比前一场比赛结束的时间早,则跳过,判断下一场比赛,反之,把这场比赛加入,然后更新完结比赛的时间;
用一个pair数组存放每个比赛的开始结束的时间,然后自定义排序规则:return a1.second < a2.second;
C++代码:
#include<iostream>
#include<algorithm>
using namespace std;
const int N = 1000000 + 5;
typedef pair<int, int> PII;
PII test[N];
bool cmp(PII a1, PII a2) {
return a1.second < a2.second;
}
int main() {
int n;
cin >> n;
for (int i = 1; i <= n; i++) {
cin >> test[i].first >> test[i].second;
}
sort(test + 1, test +1 + n, cmp);
int cut = 1;
int r = test[1].second;
for (int i = 2; i <= n; i++) {
if (test[i].first >= r) {
cut++;
r = test[i].second;
}
}
cout << cut;
return 0;
}
标签:PII,洛谷,比赛,int,a1,second,test,1803
From: https://blog.csdn.net/2301_81374681/article/details/137056617