aboutsummaryrefslogtreecommitdiff
path: root/snippets/min_pq.h
blob: 1dbcf9939d98ab433b6a34d2bf30c0b011d4bd8f (plain)
1
2
3
4
5
6
#pragma

#include <queue>

template <typename T>
using MinPQ = std::priority_queue<T, std::vector<T>, std::greater<>>;