-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path0.cpp
More file actions
41 lines (29 loc) · 637 Bytes
/
0.cpp
File metadata and controls
41 lines (29 loc) · 637 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
#include <stdio.h>
#include <iostream>
#include <vector>
#include <string>
#include <math.h>
#include <algorithm>
#include <bitset>
#include <set>
#include <sstream>
#include <stdlib.h>
#include <map>
#include <queue>
#include <assert.h>
#include <deque>
#include <string.h>
using namespace std;
#define sz(x) ((int)x.size())
#define all(x) (x).begin(), (x).end()
#define pb(x) push_back(x)
#define mp(x, y) make_pair(x, y)
typedef long long int64;
typedef vector <int> vi;
typedef vector <vi> vvi;
int main () {
//freopen("", "rt", stdin);
//freopen("", "wt", stdout);
//std::ios::sync_with_stdio(false);
return 0;
}