摘要:
视频链接:C09 可持久化字典树(Trie)_哔哩哔哩_bilibili // 区间最大异或和 可持久化01Trie O(n*23) #include <iostream> #include <cstring> #include <algorithm> using namespace std; co 阅读全文
摘要:
视频链接:C08 可持久化线段树(主席树)_哔哩哔哩_bilibili Luogu P3834 【模板】可持久化线段树 2 // 主席树 O(nlognlogn) #include <iostream> #include <cstring> #include <algorithm> using na 阅读全文
摘要:
视频链接:265【模板】P3690 动态树(Link Cut Tree)_哔哩哔哩_bilibili Luogu P3690 【模板】动态树(Link Cut Tree) #include <iostream> #include <cstring> #include <algorithm> usin 阅读全文
摘要:
视频链接:264【模板】FHQ Treap P3391 文艺平衡树_哔哩哔哩_bilibili Luogu P3391 【模板】文艺平衡树 #include <iostream> using namespace std; const int N=100010; struct node{ int l, 阅读全文
摘要:
视频链接:263【模板】FHQ Treap P3369 普通平衡树_哔哩哔哩_bilibili Luogu P3369 【模板】普通平衡树 #include <iostream> using namespace std; const int N=100005; struct node{ int l, 阅读全文
摘要:
视频链接:262【模板】Splay P3391 文艺平衡树_哔哩哔哩_bilibili Luogu P3391 【模板】文艺平衡树 #include <iostream> #include <algorithm> using namespace std; const int N=100010; in 阅读全文
摘要:
视频链接:261【模板】Splay P3369 普通平衡树_哔哩哔哩_bilibili Luogu P3369【模板】普通平衡树 #include <iostream> using namespace std; #define ls(x) tr[x].ch[0] #define rs(x) tr[x 阅读全文
摘要:
视频链接:394 圆方树 P5236【模板】静态仙人掌_哔哩哔哩_bilibili // Luogu P5236 【模板】静态仙人掌 #include <iostream> #include <cstring> #include <algorithm> using namespace std; co 阅读全文
摘要:
视频链接:393 基环树 [NOIP2018 提高组] 旅行_哔哩哔哩_bilibili Luogu P5022 [NOIP2018 提高组] 旅行 #include <cstdio> #include <cstring> #include <iostream> #include <algorith 阅读全文
摘要:
视频链接:https://www.bilibili.com/video/BV1wN4y1T7S3/ // Luogu P1399 [NOI2013] 快餐店 #include<iostream> #include<algorithm> #include<cstring> using namespac 阅读全文