edit existing problems

This commit is contained in:
2024-10-25 21:53:35 +08:00
parent 76e934f733
commit 0588937b51
2 changed files with 11 additions and 6 deletions
+5
View File
@@ -3,6 +3,11 @@
{
"path": "4.树上问题及图论/树上问题及图论.md",
"bookmarks": [
{
"line": 16,
"column": 13,
"label": ""
},
{
"line": 57,
"column": 15,
@@ -143,7 +143,7 @@ int LCA(int u, int v)
### 树链剖分基本定义
- **重子节点**表示其子节点中对打的子节点。如果有多个最大的,则任取其一。
- **重子节点**表示其子节点中最大的子节点。如果有多个最大的,则任取其一。
- **轻子节点**表示除去重子节点外其他所有子节点。
- 从这个节点到重子节点的边叫做**重边**
- 到其余子节点的边叫做**轻边**