信息学奥赛一本通T1422-活动安排 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义结构体aaa,包含两个整数成员s和f struct aaa{ …… 题解列表 2024年11月17日 0 点赞 0 评论 127 浏览 评分:0.0
包会,不会你来锤我 摘要:#### 贪心策略:优先选择先结束的活动,保证每个选择子结构的最佳结果 ```cpp #include #include using namespace std; //创建结构体,结构体…… 题解列表 2024年10月31日 0 点赞 3 评论 171 浏览 评分:9.9
信息学奥赛一本通T1422-活动安排 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;struct Node{ int start,en…… 题解列表 2024年03月19日 0 点赞 0 评论 265 浏览 评分:9.9
信息学奥赛一本通T1422-活动安排(贪心算法) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct Node{ int x, y;}I[1005];int cmp(…… 题解列表 2022年07月31日 0 点赞 0 评论 334 浏览 评分:2.0
信息学奥赛一本通T1422-活动安排 摘要:#include<bits/stdc++.h>using namespace std;const int N=1010;int n;pair<int,int> p[N];int main(){ …… 题解列表 2022年04月05日 0 点赞 0 评论 466 浏览 评分:9.9
区间贪心 不相交的区间最大个数 摘要:解题思路: 贪心区间 1.对区间左端点进行从大到小排序,左端点相同则按右端点从小到大排序; 2.记录排列好的第一个被选中区间的…… 题解列表 2022年04月05日 0 点赞 0 评论 374 浏览 评分:6.0
C++区间贪心,做个笔记期末自己复习用,说标题太短不让我发 摘要:解题思路:书上那个4.4.2已经很细了,期末时要是忘记了就去翻122页,多覆盖效率高注意事项:题中为开区间参考代码:#include<bits/stdc++.h>using namespace std…… 题解列表 2022年04月05日 0 点赞 0 评论 323 浏览 评分:0.0