加载中...

摘要: https://www.luogu.com.cn/problem/P1119 一道很好的用来理解Floyd算法本质的题目。 优质题解:https://www.luogu.com.cn/blog/Time-Rune/solution-p1119 阅读全文
posted @ 2022-08-23 23:41 英雄不问出处c 阅读(12) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1519/ #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 510; int c 阅读全文
posted @ 2022-08-23 18:49 英雄不问出处c 阅读(15) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1620/ #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 10010; int 阅读全文
posted @ 2022-08-23 17:25 英雄不问出处c 阅读(23) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1555/ #include <iostream> #include <cstring> using namespace std; const int N = 100010; int n; int p[N]; int ma 阅读全文
posted @ 2022-08-23 16:50 英雄不问出处c 阅读(69) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1624/ 写法1 #include <iostream> #include <cstring> #include <algorithm> #include <set> using namespace std; struc 阅读全文
posted @ 2022-08-23 13:50 英雄不问出处c 阅读(22) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1597/ #include <iostream> #include <cstring> #include <algorithm> #include <vector> using namespace std; const 阅读全文
posted @ 2022-08-23 13:30 英雄不问出处c 阅读(27) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1495/ #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> #include <map> #include <ve 阅读全文
posted @ 2022-08-23 13:25 英雄不问出处c 阅读(52) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/description/1587/ 思路: 电话记录的模型,先筛选出所有符合要求的记录,之后按照题目要求做即可。 #include <iostream> #include <cstring> #include <algor 阅读全文
posted @ 2022-08-23 13:19 英雄不问出处c 阅读(18) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/description/1568/ #include <iostream> #include <cstring> #include <algorithm> #include <vector> using namespace 阅读全文
posted @ 2022-08-23 13:03 英雄不问出处c 阅读(19) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/description/1488/ 思路: 依然核心问题是:搞经常模拟的是什么东西,如果这题模拟时间,会很烦,但模拟队列的情况,会简单很多。 #include <iostream> #include <cstring> # 阅读全文
posted @ 2022-08-23 12:19 英雄不问出处c 阅读(84) 评论(0) 推荐(0) 编辑
摘要: https://www.acwing.com/problem/content/1496/ 思路: 窗口问题的核心一般都是用小根堆维护,以小根堆为核心,切合实际情况。 #include <cstdio> #include <cstring> #include <iostream> #include < 阅读全文
posted @ 2022-08-23 11:27 英雄不问出处c 阅读(16) 评论(0) 推荐(0) 编辑