This repository has been archived on 2022-06-22. You can view files and clone it, but cannot push or open issues or pull requests.
usaco-guide/content/6_Plat/HLD.mdx
2020-06-24 16:08:16 -07:00

31 lines
No EOL
716 B
Text

---
id: hld
title: "Heavy-Light Decomposition"
author: Benjamin Qi
prerequisites:
- Gold - Euler Tour on Tree
- Platinum - Range Update Range Query
description: Path and subtree updates and queries.
---
import { Problem } from "../models";
export const metadata = {
problems: {
general: [
new Problem("Plat", "Disrupt", "842", "Easy", false, ["HLD"]),
]
}
};
- probably not intended solution, but can help (ex. for "Disrupt")
### Tutorial
- [Anudeep2011](https://blog.anudeep2011.com/heavy-light-decomposition/)
- [AI-Cash](http://codeforces.com/blog/entry/22072)
- [adamant](https://codeforces.com/blog/entry/53170)
### Problems
<problems-list problems={metadata.problems.general} />