diff options
-rw-r--r-- | Data Structures/seg_ordered_set_tree.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Data Structures/seg_ordered_set_tree.cpp b/Data Structures/seg_ordered_set_tree.cpp index efc5815..68370ae 100644 --- a/Data Structures/seg_ordered_set_tree.cpp +++ b/Data Structures/seg_ordered_set_tree.cpp @@ -2,7 +2,7 @@ #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; -template<typename T> using ordered_set = tree<T, null_type, less_equal<T>, rb_tree_tag, tree_order_statistics_node_update>; +template<typename T> using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>; constexpr int MX = MX; ordered_set<int> S[4 * MX]; |