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_Dia.md

20 lines
549 B
Markdown
Raw Normal View History

2020-06-22 01:45:24 +00:00
---
id: tree-dia
title: "Tree Diameter"
author: Benjamin Qi
prerequisites:
-
- Silver - Depth First Search
2020-06-22 19:59:16 +00:00
description: Finding a pair of vertices of a tree that are farthest apart.
2020-06-22 01:45:24 +00:00
---
### Tutorial
- CPH 14.2
### Problems
- [CSES Tree Diameter](https://cses.fi/problemset/task/1131)
- [USACO Plat Newbarns](http://www.usaco.org/index.php?page=viewproblem2&cpid=817)
- Copy of [CF Brain Network "Hard"](https://codeforces.com/contest/690/problem/C3)
2020-06-22 19:59:16 +00:00
- [Tree Construction](https://csacademy.com/contest/archive/task/tree-construct)