aizu_online_judge/dsl/
mod.rs

1//! Data Sets and Queries
2
3/// Disjoint Set: Union Find Tree
4pub mod dsl_1_a;
5/// Weighted Union Find Trees
6pub mod dsl_1_b;
7/// Range Minimum Query (RMQ)
8pub mod dsl_2_a;
9/// Range Sum Query
10pub mod dsl_2_b;
11/// Range Search (kD Tree)
12pub mod dsl_2_c;
13/// Range Update Query (RUQ)
14pub mod dsl_2_d;
15/// Range Add Query (RAQ)
16pub mod dsl_2_e;
17/// RMQ and RUQ
18pub mod dsl_2_f;
19/// RSQ and RAQ
20pub mod dsl_2_g;
21/// RMQ and RAQ
22pub mod dsl_2_h;
23/// RSQ and RUQ
24pub mod dsl_2_i;
25/// The Smallest Window I
26pub mod dsl_3_a;
27/// The Smallest Window II
28pub mod dsl_3_b;
29/// The Number of Windows
30pub mod dsl_3_c;
31/// Sliding Minimum Element
32pub mod dsl_3_d;
33/// Union of Rectangles
34pub mod dsl_4_a;
35/// The Maximum Number of Customers
36pub mod dsl_5_a;
37/// The Maximum Number of Overlaps
38pub mod dsl_5_b;