-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdefault.hpp
More file actions
44 lines (40 loc) · 797 Bytes
/
default.hpp
File metadata and controls
44 lines (40 loc) · 797 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
#pragma once
#include <algorithm>
#include <iostream>
#include <sys/wait.h>
#include <vector>
#include <string>
#include <fstream>
#include <map>
#include <unordered_map>
#include <set>
#include <unordered_set>
#include <stack>
#include <queue>
#include <utility>
#include <limits>
#include <list>
#include <functional>
/** Using interfaces from std. */
using std::cerr;
using std::cin;
using std::cout;
using std::endl;
using std::ifstream;
using std::list;
using std::map;
using std::numeric_limits;
using std::pair;
using std::queue;
using std::set;
using std::stack;
using std::stoi;
using std::string;
using std::unordered_map;
using std::unordered_set;
using std::vector;
/** Aliases */
using UINT64 = uint64_t;
using vi = vector<int>;
using vvi = vector<vi>;
using ii = pair<int, int>;