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/Gold_Graphs.md

21 lines
582 B
Markdown
Raw Normal View History

2020-06-03 14:17:07 +00:00
- **Dijkstra**
- ex. [Milk Pumping](http://www.usaco.org/index.php?page=viewproblem2&cpid=969)
- Floyd-Warshall
- Bellman-Ford??
- SPFA??
- CPH 13
- CPH 15
- ex. [Fencedin](http://www.usaco.org/index.php?page=viewproblem2&cpid=623)
- Prim
- Kruskal
- CPH 16
- ex. [Timeline](http://www.usaco.org/index.php?page=viewproblem2&cpid=1017)
- DSU Complexity Proofs
- [log\*n](https://en.wikipedia.org/wiki/Proof_of_O(log*n)\_time_complexity\_of_union%E2%80%93find)
- [a(m,n)](https://dl.acm.org/doi/pdf/10.1145/321879.321884)