-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
36 lines (31 loc) · 1.04 KB
/
main.cpp
File metadata and controls
36 lines (31 loc) · 1.04 KB
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
#include <bits/stdc++.h>
using namespace std;
#define MK make_pair
#define PB push_back
#define ALL(v) (v).begin() , (v).end()
#define Set(v,x) memset( v , x , sizeof(v))
#define contain(Set,i) ( (Set) & two(i) )
#define __join(a,b) a##b
#define foreach(c, i) for(__typeof((c).begin())i=(c).begin(),__join(i,__end)=(c).end();i!=__join(i,__end);i++)
#define FOR(i,n) for (int i = 0 ; i < (n) ; i++)
#define REP(i, b, e) for(typeof(e) i=b; i!=e; ++i)
#define INF 100000000
#define EPS 1e-6
#define MAX 55
#define MOD 1000000007
#define MAXE 1000000
#define COST first
#define V1 second.first
#define V2 second.second
typedef vector<int> VI;
typedef long long int ll;
typedef vector<ll> VL;
typedef vector<VI> VVI;
typedef pair<int,int> PII;
typedef vector<PII> VII;
typedef pair<pair<int,int>,int> PIII;
int main() {
freopen("in.txt","r", stdin);
// freopen("out.txt","w", stdout);
return 0;
}