From 5d28967e3f25e22deac7cbc914e6ba9f1da24b8c Mon Sep 17 00:00:00 2001 From: subcrip Date: Mon, 6 May 2024 19:50:22 +0800 Subject: [PATCH] Update include.hh Signed-off-by: subcrip --- include.hh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include.hh b/include.hh index 91337da..a30e9ef 100644 --- a/include.hh +++ b/include.hh @@ -31,6 +31,8 @@ using pii = pair; using pil = pair; using pli = pair; using pll = pair; +template using max_heap = priority_queue; +template using min_heap = priority_queue, greater<>>; /* constants */ constexpr int INF = 0x3f3f3f3f;