1
0
Fork 0

Update include.hh

Signed-off-by: subcrip <contact@subc.rip>
This commit is contained in:
subcrip 2024-05-13 11:28:02 +08:00
parent 7b83e5e187
commit 671fb5fc4a
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ using tiii = tuple<int, int, int>;
template <typename T> using max_heap = priority_queue<T>; 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 min_heap = priority_queue<T, vector<T>, greater<>>;
template <typename T> using oi = ostream_iterator<T>; template <typename T> using oi = ostream_iterator<T>;
template <typename T> using ii = istream_iterator<T>;
/* constants */ /* constants */
constexpr int INF = 0x3f3f3f3f; constexpr int INF = 0x3f3f3f3f;