: 信息学奥赛一本通T1323-活动选择 摘要:解题思路: 贪心,排序,双指针注意事项:使用pair参考代码:#include<iostream> #include<algorithm> #include<utility> using na…… 题解列表 2024年02月12日 0 点赞 0 评论 60 浏览 评分:7.0
2151活动选择 简单贪心算法(注释很详细) 摘要:注意:根据样例可知,前一个活动的结束时间可以与后一个活动的开始时间重合//贪心规则:在完成当前的活动后,礼堂选取结束时间早的活动作为下一个活动 //结束时间早,意味着等待时间与活动时间加起来短 …… 题解列表 2023年01月06日 0 点赞 0 评论 175 浏览 评分:9.9
2151: 信息学奥赛一本通T1323-活动选择 摘要:解题思路:贪心注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int n,x,z; struct huodong { int …… 题解列表 2023年01月04日 0 点赞 0 评论 161 浏览 评分:9.9
活动选择c++ 摘要:解题思路:结束时间越早,能安排的活动就越多;注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int begin[100…… 题解列表 2021年12月04日 0 点赞 0 评论 715 浏览 评分:9.4
活动选择--和书上写法不同 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; struct pp{ int m; int n; }P…… 题解列表 2021年08月08日 0 点赞 1 评论 291 浏览 评分:9.9