-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpqueue.cpp
More file actions
44 lines (40 loc) · 782 Bytes
/
pqueue.cpp
File metadata and controls
44 lines (40 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <queue>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <cctype>
#include <string>
#include <cstring>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
using namespace std;
// change this to make arbitrary one
class cmp {
bool rev;
public:
cmp(const bool& revp=false) { rev=rev=revp; }
bool operator() (const int & a, const int & b) const {
if(rev) return a>b;
else return a<b;
}
};
typedef priority_queue<int, vector<int>, cmp> pqueue;
int main() {
return 0;
}