reorganize

This commit is contained in:
Benjamin Qi 2020-06-04 20:37:02 -04:00
parent 42e62865fd
commit 9fa1f7ee95
14 changed files with 21 additions and 16 deletions

View file

@ -7,9 +7,13 @@ problems:
- bronze_word
- bronze_paint
- bronze_square
order: 4
order: 3
---
Demonstrates how to read in input and print output for a USACO problem in multiple languages. Also lists some introductory USACO Bronze problems.
<!-- END DESCRIPTION -->
Let's begin by solving a few fun problems! The following problems require relatively little programming experience and no algorithmic knowledge.
Do as many as you want, then move on! You do not have to do all of them.

View file

@ -2,7 +2,7 @@
slug: /intro/containers
title: Containers
author: Unknown
order: 5
order: 4
---

View file

@ -1,8 +0,0 @@
---
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

@ -2,7 +2,7 @@
slug: /bronze/rectangle-geometry
title: "Rectangle Geometry"
author: Unknown
order: 4
order: 2
---
See 7.1 of https://www.overleaf.com/project/5e73f65cde1d010001224d8a

View file

@ -2,7 +2,7 @@
slug: /bronze/complete-search
title: "Complete Search"
author: Unknown
order: 3
order: 4
---
See 6 of https://www.overleaf.com/project/5e73f65cde1d010001224d8a

View file

@ -3,6 +3,9 @@ slug: /silver/sorting
title: "Sorting"
author: Unknown
order: 3
prerequisites:
-
- Silver - Containers
---
<div class="syllabus-only">

View file

@ -3,6 +3,9 @@ slug: /silver/binary-search
title: "Binary Search"
author: Unknown
order: 4
prerequisites:
-
- Silver - Sorting
---
<!-- END DESCRIPTION -->

View file

@ -11,7 +11,7 @@ prerequisites:
-
- Silver - Prefix Sums
-
- Silver - DFS (for Tree DP)
- Silver - Depth First Search (for Tree DP)
---
An introduction to Dynamic Programming concepts needed (and not-so-needed but still useful) for USACO Gold.

View file

@ -5,7 +5,7 @@ author: Benjamin Qi
order: 1
prerequisites:
-
- Silver - DFS
- Silver - Depth First Search
---
Lowest Common Ancestor and other tree topics.

View file

@ -3,6 +3,9 @@ slug: /plat/hashing
title: "Platinum - Strings"
author: Benjamin Qi
order: 6
prerequisites:
-
- Silver - Depth First Search
---
- Tries

View file

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

View file

@ -5,7 +5,7 @@ author: Benjamin Qi
order: 9
prerequisites:
-
- some familiarity with at least one of the two mentioned tutorials
- some familiarity with at least one of the two tutorials mentioned in this module
---
**Slope trick** refers to manipulating piecewise linear convex functions. Includes a simple solution to [Landscaping](http://www.usaco.org/index.php?page=viewproblem2&cpid=650).