-
Notifications
You must be signed in to change notification settings - Fork 1
/
exm.cpp
54 lines (43 loc) · 1.03 KB
/
exm.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
47
48
49
50
51
52
53
54
#include <string>
#include <iostream>
#include <algorithm>
#include <vector>
#include <map>
#include <list>
#include <set>
#include <cstdio>
#include <cmath>
#include <iomanip>
#include <deque>
#include <ctime>
#include <cstring>
//#include <bits/stdc++.h>
using namespace std;
#define fr first
#define sd second
#define pb push_back
#define mp make_pair
#define endl '\n'
#define forr(i, n) for(ll (i) = 0LL; (i) < (n); (i)++)
#define mp3(a, b, c) mp(a, mp(b, c))
typedef long long ll;
typedef pair<ll, ll> pll;
typedef pair<ll, pll> plll;
typedef vector < vector < double > > vvd;
typedef vector < double > vd;
typedef vector < pair < double, double> > vdd;
typedef vector < vector < long long > > vvl;
typedef vector < long long > vl;
typedef vector < pll > vll;
int INT_MAX_VAL = (int) 0x3F3F3F3F;
int INT_MIN_VAL = (int) -0x3F3F3F3F;
ll LONG_MAX_VAL = (ll) 0x3F3F3F3F3F3F3F3F;
ll LONG_MIN_VAL = (ll) -0x3F3F3F3F3F3F3F3F;
#define MAXN 500006
#define MOD 1000000007
int main()
{
cin.tie(0);
ios::sync_with_stdio(false);
return 0;
}