edit some descriptions

This commit is contained in:
Benjamin Qi 2020-06-04 20:28:32 -04:00
parent 7c88005361
commit 42e62865fd
6 changed files with 16 additions and 12 deletions

View file

@ -1,8 +0,0 @@
---
slug: /intro/files
title: File IO
author: Unknown
order: 3
---
do we still need this if USACO is transitioning to standard input/output?

View file

@ -0,0 +1,8 @@
---
slug: /intro/files
title: Input & Output
author: Unknown
order: 3
---
Demonstrates how to read input and write output for a simple problem in multiple languages.

View file

@ -12,6 +12,8 @@ prerequisites:
- Shortest Path With Negative Edge Weights
- All Pairs Shortest Path
<!-- END DESCRIPTION -->
## Non-Negative Edge Weights
Use *Dijkstra's Algorithm*.

View file

@ -51,4 +51,8 @@ Disjoint Set Union and Minimum Spanning Trees
## Other Problems
- [Birthday Gifts](https://www.hackerearth.com/practice/math/combinatorics/inclusion-exclusion/practice-problems/algorithm/mancunian-and-birthday-gifts-d44faa15/) [](73)
- [Spanning Tree Fraction](https://www.hackerrank.com/contests/w31/challenges/spanning-tree-fraction) [](78)
- [Spanning Tree Fraction](https://www.hackerrank.com/contests/w31/challenges/spanning-tree-fraction) [](78)
## Boruvka?
(add)

View file

@ -8,8 +8,6 @@ prerequisites:
- Gold - Binary Indexed Trees
---
Assumes familiarity with "Gold - Binary Indexed Trees."
General range queries for associative operations, including segment tree.
<!-- END DESCRIPTION -->

View file

@ -7,7 +7,7 @@ prerequisites:
-
- Gold - Minimum Spanning Tree
-
- Analysis for Robotic Cow Herd
- some familiarity with the analysis for "Robotic Cow Herd"
---
A simple solution to [Robotic Cow Herd](http://www.usaco.org/index.php?page=viewproblem2&cpid=674) that generalizes.