-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathModule.cc
44 lines (36 loc) · 820 Bytes
/
Module.cc
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
/******************
** Author: Chiba **
******************/
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
#include <string>
#include <map>
#include <set>
#include <queue>
#include <cmath>
#include <bitset>
#include <iostream>
#include <cstdlib>
#include <cctype>
#include <stack>
#include <numeric>
using namespace std;
#define INIT(range, val) memset(range, val, sizeof(range))
#define mp make_pair
#define pb push_back
#define pf push_front
#define ls (rt << 1)
#define rs ((rt << 1) | 1)
#define MID(x, y) ((x + y) >> 1)
#define INF (1ll << 30)
#define lowBit(x) (x & -x)
inline void __CIN__() { ios::sync_with_stdio(false); cin.tie(0); }
typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<int, pii> piii;
int main() {
return 0;
}