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/3_Bronze/DS.mdx
2020-06-24 14:28:57 -07:00

30 lines
1.1 KiB
Text

---
id: ds
title: Data Structures
author: Nathan Wang, Darren Yao, Benjamin Qi
description: Introductory problems using sets and maps.
prerequisites:
- Bronze - "Built-In C++ Containers" or "Built-In Java Collections"
---
import { Problem } from "../models"
export const metadata = {
problems: {
standard: [
new Problem("YS", "Associative Array", "associative_array", "Intro"),
new Problem("CSES", "Distinct Numbers", "1621", "Intro"),
new Problem("CSES", "Sum of Two Values", "1640", "Intro", false, [], "Can be solved without sets."),
new Problem("CSES", "Concert Tickets", "1091", "Easy", false, ["iterators"]),
new Problem("CSES", "Towers", "1073", "Easy", false, ["multiset", "greedy"]),
new Problem("CSES", "Traffic Lights", "1163", "Normal", false, ["set"]),
new Problem("CSES", "Room Allocation", "1164", "Normal", false, ["multiset", "greedy"]),
]
}
};
## Standard
Do roughly the first half of the Sorting and Searching section in the [CSES Problem Set](https://cses.fi/problemset/).
<problems-list problems={metadata.problems.standard} />