Update include.hh
Signed-off-by: subcrip <contact@subc.rip>
This commit is contained in:
parent
cdc14e0060
commit
7b83e5e187
|
@ -67,6 +67,7 @@ using tiid = tuple<int, int, ld>;
|
|||
using tiii = tuple<int, int, int>;
|
||||
template <typename T> using max_heap = priority_queue<T>;
|
||||
template <typename T> using min_heap = priority_queue<T, vector<T>, greater<>>;
|
||||
template <typename T> using oi = ostream_iterator<T>;
|
||||
|
||||
/* constants */
|
||||
constexpr int INF = 0x3f3f3f3f;
|
||||
|
|
Loading…
Reference in New Issue