cplib

This documentation is automatically generated by online-judge-tools/verification-helper

View the Project on GitHub shino16/cplib

:warning: data-structure/indexed-map.cpp

Code

#pragma once

#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;

template <typename K, typename V>
using indexed_map =
    tree<K, V, less<K>, rb_tree_tag, tree_order_statistics_node_update>;
#line 2 "data-structure/indexed-map.cpp"

#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;

template <typename K, typename V>
using indexed_map =
    tree<K, V, less<K>, rb_tree_tag, tree_order_statistics_node_update>;
Back to top page