Gold
The topics below are not exhaustive for this division.
Contest problems may contain topics not covered in the guide, or topics listed under different divisions!
Modules Progress
Problems Progress
Introductory Number Theory
Dynamic Programming
Every (?) Gold and Platinum contest has at least one DP problem.
Introduction to DP
Very Frequent
Speeding up naive recursive solutions with memoization.
Updated: 59 minutes ago
Knapsack DP
Not Frequent
Problems that can be modeled as filling a limited-size container with a subset of items.
Updated: Last week
Paths on Grids
Not Frequent
Counting the number of "special" paths on a grid, and how some string problems can be solved using grids.
Updated: 3 days ago
(Optional) Longest Increasing Subsequence
Rare
Finding and using the longest increasing subsequence of an array.
Updated: 3 days ago
Graphs
Breadth First Search (BFS)
Not Frequent
Traversing a graph in a way such that vertices closer to the starting vertex are processed first.
Updated: 3 days ago
Disjoint Set Union
Somewhat Frequent
The Disjoint Set Union (DSU) data structure allows you to add edges to an initially empty graph and test whether two vertices of the graph are connected.
Updated: 3 days ago
Topological Sort
Rare
An ordering of vertices in a directed acyclic graph that ensures that a node is visited before every node it has a directed edge to.
Shortest Paths with Non-Negative Edge Weights
Somewhat Frequent
Introduces Bellman-Ford, Floyd-Warshall, Dijkstra.
Updated: 3 days ago
Minimum Spanning Trees
Not Frequent
A subset of the edges of a connected, undirected, edge-weighted graph that connects all the vertices to each other of minimum total weight, where no cycles are allowed.
Updated: 3 days ago
Data Structures
Stacks
Rare
A data structures that only allows insertion and deletion at one end.
Updated: 3 days ago
Sliding Window
Not Frequent
Maintaining data over consecutive subarrays.
Updated: 3 days ago
Point Update Range Sum
Somewhat Frequent
Introduces Segment Tree, Binary Indexed Tree, and C++ Order Statistic Tree.
Updated: 2 weeks ago
Trees
Euler Tour Technique
Not Frequent
Flattening a tree into an array to easily query and update subtrees.
Updated: 6 days ago
DP on Trees - Introduction
Not Frequent
Using subtrees as subproblems.
Updated: 3 days ago
(Optional) DP on Trees - Solving For All Roots
Rare
Tree DP that uses the subtree from excluding each node's subtree.
Updated: Last week
Hashing
Rarely required at this level, but still good to know.