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

24 lines
755 B
Markdown
Raw Normal View History

2020-06-22 01:45:24 +00:00
---
id: tree-euler
title: "Euler Tour on Tree"
author: ?
prerequisites:
2020-06-22 20:51:12 +00:00
- Silver - Depth First Search
- Gold - Static Range Queries
2020-06-22 19:59:16 +00:00
description: Subtree updates and queries and another way to compute lowest common ancestors.
2020-06-22 01:45:24 +00:00
---
2020-06-23 02:17:59 +00:00
- [CSES: Subtree Queries](https://cses.fi/problemset/task/1137)
2020-06-22 01:45:24 +00:00
2020-06-23 02:17:59 +00:00
## 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)