-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathtemplate.cpp
More file actions
38 lines (32 loc) · 816 Bytes
/
template.cpp
File metadata and controls
38 lines (32 loc) · 816 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
#include <bits/stdc++.h>
using namespace std;
#define st first
#define nd second
#define mp make_pair
#define cl(x, v) memset((x), (v), sizeof(x))
#define gcd(x,y) __gcd((x),(y))
#ifndef ONLINE_JUDGE
#define db(x) cerr << #x << " == " << x << endl
#define dbs(x) cerr << x << endl
#define _ << ", " <<
#else
#define db(x) ((void)0)
#define dbs(x) ((void)0)
#endif
typedef long long ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<int, pii> piii;
typedef pair<ll, ll> pll;
typedef pair<ll, pll> plll;
const ld EPS = 1e-9, PI = acos(-1.);
const ll LINF = 0x3f3f3f3f3f3f3f3f;
const int INF = 0x3f3f3f3f, MOD = 1e9+7;;
const int N = 1e5+5;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
//freopen("in", "r", stdin);
//freopen("out", "w", stdout);
return 0;
}