-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdefault_template.cpp
46 lines (38 loc) · 944 Bytes
/
default_template.cpp
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
45
46
#pragma GCC optimize ("O3")
#pragma GCC target ("sse4")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
#define mp make_pair
#define pub push_back
#define puf push_front
#define pob pop_back
#define pof pop_front
#define ins insert
#define f first
#define s second
#define lb lower_bound
#define ub upper_bound
#define sz(x) (size_t)x.size()
#define all(x) begin(x), end(x)
#define rsz resize
const ll INF = 1e18;
const ld PI = 4*atan((ld)1);
const int MOD = 1e9 + 7;
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
template <typename T>
using ordered_set = tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>;
#define ook order_of_key
#define fbo find_by_order
//file IO
ifstream fin("");
ofstream fout("");
int main(){
//std IO
ios_base::sync_with_stdio(false);
cin.tie(NULL);
}
//Keep It Simple, Stupid!