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/5_Gold/Tree_Euler.md
Benjamin Qi af73a84163 lots
2020-06-22 22:17:59 -04:00

24 lines
755 B
Markdown

---
id: tree-euler
title: "Euler Tour on Tree"
author: ?
prerequisites:
- Silver - Depth First Search
- Gold - Static Range Queries
description: Subtree updates and queries and another way to compute lowest common ancestors.
---
- [CSES: Subtree Queries](https://cses.fi/problemset/task/1137)
## Tutorial
- CPH 18.2
- [cp-algorithms - LCA with Sparse Table](https://cp-algorithms.com/graph/lca.html)
## Problems
- [CSES: Path Queries](https://cses.fi/problemset/task/1138)
- USACO
- [Gold - Milk Visits](http://www.usaco.org/index.php?page=viewproblem2&cpid=970)
- [Plat - Promotion Counting](http://www.usaco.org/index.php?page=viewproblem2&cpid=696)
- [Plat - Snow-Cow](http://www.usaco.org/index.php?page=viewproblem2&cpid=973)