上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 44 下一页
摘要: 视频链接:https://www.bilibili.com/video/BV1nV41127ZU/ #include <iostream> using namespace std; const int N=1010,M=10000; int a[M],b[M],c[M]; int f[N]; int 阅读全文
posted @ 2023-04-10 09:58 董晓 阅读(465) 评论(0) 推荐(0) 编辑
摘要: 视频链接:https://www.bilibili.com/video/BV1354y1C7SF/ C15【模板】单调队列 滑动窗口最值 - 董晓 - 博客园 (cnblogs.com) Luogu P1776 宝物筛选 #include <iostream> #include <cstring> 阅读全文
posted @ 2023-04-10 09:57 董晓 阅读(650) 评论(0) 推荐(1) 编辑
摘要: 视频链接:https://www.bilibili.com/video/BV1m54y117uu/ E11【模板】单调队列 滑动窗口最值 - 董晓 - 博客园 (cnblogs.com) LOJ10176 最大连续和 f[i]表示选第 i 个数,且长度不超过m的最大连续和f[i] = max(s[i 阅读全文
posted @ 2023-04-10 09:56 董晓 阅读(487) 评论(0) 推荐(0) 编辑
摘要: 视频链接:E11【模板】单调队列 滑动窗口最值_哔哩哔哩_bilibili Luogu P1886 滑动窗口 /【模板】单调队列 #include <iostream> using namespace std; const int N=1000010; int a[N], q[N]; int mai 阅读全文
posted @ 2023-04-10 09:24 董晓 阅读(895) 评论(0) 推荐(3) 编辑
摘要: 视频链接:https://www.bilibili.com/video/BV1MA41177cg/ #include <iostream> #include <algorithm> using namespace std; const int N=210; int n, m; int v[N], w 阅读全文
posted @ 2023-04-10 09:23 董晓 阅读(641) 评论(1) 推荐(0) 编辑
摘要: 视频链接:409【模板】背包DP 完全背包_哔哩哔哩_bilibili // 朴素算法 TLE #include <iostream> #include <algorithm> using namespace std; const int N=1010; int n, m; int v[N], w[ 阅读全文
posted @ 2023-04-10 09:22 董晓 阅读(579) 评论(0) 推荐(2) 编辑
摘要: 视频链接:E08【模板】背包DP 01背包_哔哩哔哩_bilibili Luogu P2871 [USACO07DEC]Charm Bracelet S // 朴素算法 MLE #2 #10 #include <iostream> #include <cstring> #include <algor 阅读全文
posted @ 2023-04-10 09:20 董晓 阅读(833) 评论(0) 推荐(1) 编辑
摘要: 视频链接:https://www.bilibili.com/video/BV1gk4y1177j/ Luogu P2758 编辑距离 #include<iostream> #include<cstring> #include<algorithm> using namespace std; char 阅读全文
posted @ 2023-04-10 09:19 董晓 阅读(530) 评论(0) 推荐(0) 编辑
摘要: 视频链接:https://www.bilibili.com/video/BV1hv41117gC/ #include<iostream> #include<cstring> using namespace std; char a[200]="BCCABCCB"; char b[200]="AACCA 阅读全文
posted @ 2023-04-10 09:17 董晓 阅读(470) 评论(0) 推荐(0) 编辑
摘要: 视频链接:https://www.bilibili.com/video/BV1EK411K7Eb/ #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N=1010; i 阅读全文
posted @ 2023-04-09 23:12 董晓 阅读(610) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 44 下一页