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/ordering.js

121 lines
1.8 KiB
JavaScript
Raw Normal View History

2020-06-15 23:19:07 +00:00
const ModuleOrdering = {
"intro": [
"getting-started",
2020-06-16 01:06:49 +00:00
"prereqs",
2020-06-15 23:19:07 +00:00
"running-cpp",
2020-06-16 01:06:49 +00:00
"data-types",
"io",
"ex-prob",
"practicing",
2020-06-15 23:19:07 +00:00
],
"general": [
"resources",
"contests",
2020-06-16 01:06:49 +00:00
"contest-strategy",
"proposing",
2020-06-15 23:19:07 +00:00
"why-cpp",
2020-06-15 23:30:49 +00:00
"macros",
2020-06-16 01:06:49 +00:00
"debugging",
2020-06-15 23:19:07 +00:00
],
"bronze": [
2020-06-16 01:06:49 +00:00
"rect-geo",
2020-06-16 18:05:15 +00:00
"time-comp",
2020-06-16 01:06:49 +00:00
{
name: "Data Structures",
items: [
"collections",
"containers",
"pairs",
"ds",
]
},
2020-06-15 23:19:07 +00:00
"simulation",
2020-06-15 23:30:49 +00:00
"complete-search",
2020-06-16 17:09:59 +00:00
"intro-graphs",
2020-06-15 23:19:07 +00:00
],
"silver": [
2020-06-16 01:58:45 +00:00
{
name: "Sorting",
items: [
"intro-sorting",
"sorting-custom",
2020-06-16 17:09:59 +00:00
"sorting-cpp",
2020-06-16 01:58:45 +00:00
]
},
2020-06-15 23:19:07 +00:00
"binary-search",
2020-06-16 01:06:49 +00:00
"2P",
2020-06-15 23:19:07 +00:00
"data-structures",
2020-06-17 03:27:48 +00:00
"containers-silver",
2020-06-16 17:09:59 +00:00
"greedy",
2020-06-16 01:44:03 +00:00
"prefix-sums",
2020-06-16 17:09:59 +00:00
{
name: "Graphs",
items: [
"dfs",
"cyc",
]
}
2020-06-15 23:19:07 +00:00
],
"gold": [
2020-06-16 01:06:49 +00:00
{
name: "Graphs",
items: [
"bfs",
"toposort",
"sp",
"mst"
]
},
{
name: "Dynamic Programming",
items: [
"dp",
"dp-trees"
]
2020-06-16 17:51:55 +00:00
},
2020-06-17 01:42:09 +00:00
"data-structures-gold",
2020-06-16 02:35:30 +00:00
"intro-nt",
"bit",
2020-06-15 23:19:07 +00:00
],
"plat": [
"oly",
2020-06-16 01:06:49 +00:00
{
name: "Range Queries",
items: [
"1DRQ",
"2DRQ",
]
},
{
name: "Graphs",
items: [
"trees",
"graphs",
]
},
2020-06-15 23:19:07 +00:00
{
name: "Dynamic Programming",
items: [
"dp-bitmasks",
2020-06-16 01:06:49 +00:00
"dp-ranges",
"slope",
2020-06-15 23:19:07 +00:00
]
2020-06-16 01:06:49 +00:00
},
"geo",
"strings",
2020-06-16 18:05:15 +00:00
"bitsets",
2020-06-16 01:06:49 +00:00
"fracture",
2020-06-15 23:19:07 +00:00
]
};
2020-06-17 01:39:47 +00:00
export default ModuleOrdering;
export const divisions = Object.keys(ModuleOrdering);
export const divisionLabels = {
"intro": "Intro",
"general": "General",
"bronze": "Bronze",
"silver": "Silver",
"gold": "Gold",
"plat": "Platinum",
2020-06-17 02:14:52 +00:00
};