PrevNext

Introduction

This section is not complete.

Any help would be appreciated! Just submit a Pull Request on GitHub.

Example 1

StatusSourceProblem NameDifficultyTags
APIOVery Hard
Show Tags2DRQ, Euler's Formula, Persistent Segtree

This section is not complete.

Any help would be appreciated! Just submit a Pull Request on GitHub.

Example 2

StatusSourceProblem NameDifficultyTags
PlatinumVery Hard

This section is not complete.

Any help would be appreciated! Just submit a Pull Request on GitHub.
int N, h[750][750];
ll ans;
vector<pair<int, pi>> v;
int hsh(int a, int b) { return N * a + b; }
const int xd[4] = {1, 0, -1, 0}, yd[4] = {0, 1, 0, -1};
template <int SZ> struct DSU {
int par[SZ], sz[SZ], measure[SZ];

Problems

StatusSourceProblem NameDifficultyTags
SilverNormal
Show TagsEuler's Formula, Flood Fill
KattisVery Hard
Show TagsDSU, Euler's Formula
CFVery Hard
Show TagsEuler's Formula, FFT
CFVery Hard
Show TagsEuler's Formula
PlatinumVery Hard
Show TagsEuler's Formula

Module Progress:

Join the USACO Forum!

Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!

PrevNext