摘要: 视频链接:E34 树形DP 树的中心_哔哩哔哩_bilibili #include <iostream> #include <cstring> #include <algorithm> #include <vector> using namespace std; const int N=20010; 阅读全文
posted @ 2022-05-28 13:03 董晓 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 视频链接:E33 树形DP 树的直径_哔哩哔哩_bilibili #include <cstring> #include <iostream> #include <algorithm> using namespace std; const int N=10010,M=20010; int n,a,b 阅读全文
posted @ 2022-05-28 13:02 董晓 阅读(479) 评论(0) 推荐(0) 编辑
摘要: 视频链接:E32 树形DP 树的重心_哔哩哔哩_bilibili #include <iostream> #include <cstring> #include <algorithm> #include <vector> using namespace std; const int N=100010 阅读全文
posted @ 2022-05-28 13:01 董晓 阅读(657) 评论(0) 推荐(0) 编辑
摘要: 视频链接:104 八皇后问题(N皇后问题)_哔哩哔哩_bilibili Luogu P1219 [USACO1.5]八皇后 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const i 阅读全文
posted @ 2022-05-28 13:00 董晓 阅读(602) 评论(0) 推荐(1) 编辑
摘要: 视频链接:103 跳马 方案数_哔哩哔哩_bilibili P1644 跳马问题 #include <iostream> #include <cstring> #include <algorithm> using namespace std; int m,n,ans; int dx[4]={2,1, 阅读全文
posted @ 2022-05-28 12:59 董晓 阅读(397) 评论(1) 推荐(1) 编辑
摘要: 视频链接:102 迷宫 方案数_哔哩哔哩_bilibili Luogu P1605 迷宫 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N = 10; int m, 阅读全文
posted @ 2022-05-28 12:58 董晓 阅读(594) 评论(0) 推荐(2) 编辑
摘要: 视频链接:101 深搜(DFS)_哔哩哔哩_bilibili #include <iostream> #include <cstring> #include <algorithm> #include <vector> using namespace std; const int N = 500; / 阅读全文
posted @ 2022-05-28 12:57 董晓 阅读(752) 评论(0) 推荐(1) 编辑
摘要: 视频链接:100 图的存储_哔哩哔哩_bilibili ///////邻接矩阵 示例 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const int N=1010,M=1010; i 阅读全文
posted @ 2022-05-28 12:56 董晓 阅读(908) 评论(0) 推荐(1) 编辑
摘要: 视频链接:211【模板】线段树+懒标记 Luogu P3372 线段树 1_哔哩哔哩_bilibili Luogu P3372【模板】线段树 1 // 结构体版 #include <cstring> #include <iostream> #include <algorithm> using nam 阅读全文
posted @ 2022-05-28 09:13 董晓 阅读(3793) 评论(0) 推荐(10) 编辑
摘要: 视频链接:201【模板】并查集_哔哩哔哩_bilibili Luogu P3367 【模板】并查集 //并查集 路径压缩 #include <iostream> #include <cstring> #include <algorithm> using namespace std; const in 阅读全文
posted @ 2022-05-28 09:11 董晓 阅读(1092) 评论(0) 推荐(0) 编辑