信息学奥赛一本通T1422-活动安排
摘要:#include<bits/stdc++.h>using namespace std;const int N=1010;int n;pair<int,int> p[N];int main(){ ……
信息学奥赛一本通T1422-活动安排
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;struct Node{ int start,en……
区间贪心 不相交的区间最大个数
摘要:解题思路: 贪心区间 1.对区间左端点进行从大到小排序,左端点相同则按右端点从小到大排序; 2.记录排列好的第一个被选中区间的……
信息学奥赛一本通T1422-活动安排(贪心算法)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct Node{ int x, y;}I[1005];int cmp(……
C++区间贪心,做个笔记期末自己复习用,说标题太短不让我发
摘要:解题思路:书上那个4.4.2已经很细了,期末时要是忘记了就去翻122页,多覆盖效率高注意事项:题中为开区间参考代码:#include<bits/stdc++.h>using namespace std……
信息学奥赛一本通T1422-活动安排
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
// 定义结构体aaa,包含两个整数成员s和f
struct aaa{
……