上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 43 下一页
摘要: 视频链接:C09 可持久化字典树(Trie)_哔哩哔哩_bilibili // 区间最大异或和 可持久化01Trie O(n*23) #include <iostream> #include <cstring> #include <algorithm> using namespace std; co 阅读全文
posted @ 2022-08-08 23:14 董晓 阅读(1188) 评论(0) 推荐(1) 编辑
摘要: 视频链接:C08 可持久化线段树(主席树)_哔哩哔哩_bilibili Luogu P3834 【模板】可持久化线段树 2 // 主席树 O(nlognlogn) #include <iostream> #include <cstring> #include <algorithm> using na 阅读全文
posted @ 2022-08-04 22:32 董晓 阅读(1176) 评论(0) 推荐(6) 编辑
摘要: 视频链接:265【模板】P3690 动态树(Link Cut Tree)_哔哩哔哩_bilibili Luogu P3690 【模板】动态树(Link Cut Tree) #include <iostream> #include <cstring> #include <algorithm> usin 阅读全文
posted @ 2022-07-31 19:37 董晓 阅读(702) 评论(0) 推荐(2) 编辑
摘要: 视频链接:264【模板】FHQ Treap P3391 文艺平衡树_哔哩哔哩_bilibili Luogu P3391 【模板】文艺平衡树 #include <iostream> using namespace std; const int N=100010; struct node{ int l, 阅读全文
posted @ 2022-07-24 23:31 董晓 阅读(496) 评论(0) 推荐(1) 编辑
摘要: 视频链接:263【模板】FHQ Treap P3369 普通平衡树_哔哩哔哩_bilibili Luogu P3369 【模板】普通平衡树 #include <iostream> using namespace std; const int N=100005; struct node{ int l, 阅读全文
posted @ 2022-07-21 23:04 董晓 阅读(910) 评论(2) 推荐(2) 编辑
摘要: 视频链接:262【模板】Splay P3391 文艺平衡树_哔哩哔哩_bilibili Luogu P3391 【模板】文艺平衡树 #include <iostream> #include <algorithm> using namespace std; const int N=100010; in 阅读全文
posted @ 2022-07-20 19:59 董晓 阅读(655) 评论(0) 推荐(1) 编辑
摘要: 视频链接:261【模板】Splay P3369 普通平衡树_哔哩哔哩_bilibili Luogu P3369【模板】普通平衡树 #include <iostream> using namespace std; #define ls(x) tr[x].ch[0] #define rs(x) tr[x 阅读全文
posted @ 2022-07-19 20:07 董晓 阅读(2128) 评论(4) 推荐(5) 编辑
摘要: 视频链接:394 圆方树 P5236【模板】静态仙人掌_哔哩哔哩_bilibili // Luogu P5236 【模板】静态仙人掌 #include <iostream> #include <cstring> #include <algorithm> using namespace std; co 阅读全文
posted @ 2022-07-15 09:39 董晓 阅读(443) 评论(0) 推荐(2) 编辑
摘要: 视频链接:393 基环树 [NOIP2018 提高组] 旅行_哔哩哔哩_bilibili Luogu P5022 [NOIP2018 提高组] 旅行 #include <cstdio> #include <cstring> #include <iostream> #include <algorith 阅读全文
posted @ 2022-07-11 21:55 董晓 阅读(281) 评论(0) 推荐(1) 编辑
摘要: 视频链接:https://www.bilibili.com/video/BV1wN4y1T7S3/ // Luogu P1399 [NOI2013] 快餐店 #include<iostream> #include<algorithm> #include<cstring> using namespac 阅读全文
posted @ 2022-07-10 23:35 董晓 阅读(312) 评论(0) 推荐(1) 编辑
上一页 1 ··· 33 34 35 36 37 38 39 40 41 ··· 43 下一页