From 671fb5fc4aec5cebe2f1e59cd9d6b25367b97f02 Mon Sep 17 00:00:00 2001 From: subcrip Date: Mon, 13 May 2024 11:28:02 +0800 Subject: [PATCH] Update include.hh Signed-off-by: subcrip --- include.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/include.hh b/include.hh index 89a2c9a..62fb49c 100644 --- a/include.hh +++ b/include.hh @@ -68,6 +68,7 @@ using tiii = tuple; template using max_heap = priority_queue; template using min_heap = priority_queue, greater<>>; template using oi = ostream_iterator; +template using ii = istream_iterator; /* constants */ constexpr int INF = 0x3f3f3f3f;