-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSet.cpp
More file actions
59 lines (49 loc) · 1.43 KB
/
Set.cpp
File metadata and controls
59 lines (49 loc) · 1.43 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* Question : OJ Number */
#include<bits/stdc++.h>
using namespace std;
/* Pragma */
#pragma GCC optimize("Ofast")
#pragma GCC optimize("Ofast,unroll-loops,no-stack-protector,fast-math")
// #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
/* Self Define */
#define IO ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0);
#define MEM(_A, _V) memset(_A, _V, sizeof(_A))
#define ALL(_A) _A.begin(), _A.end()
#define LB(_A, _V) lower_bound(ALL(_A), _V)
#define UB(_A, _V) upper_bound(ALL(_A), _V)
#define pii pair<int, int>
#define az assign
#define sz size()
#define cr clear()
#define rz resize
#define pb push_back
#define F first
#define S second
#define int long long
#define tpn typename
/* Self Define Template Function */
template<tpn T> void pV( vector<T> _A ){
for( auto _I : _A ) cout << _I << " ";
cout << "\n";
}
template<tpn A, tpn B> ostream& operator<<( ostream& _OS, pair<A, B> _P ){
return _OS << "(" << _P.F << ", " << _P.S << ")";
}
/* Self Define Const */
const auto dir = vector<pii> { {1, 0}, {0, 1}, {-1, 0}, {0, -1},
{1, 1}, {1, -1}, {-1, 1}, {-1, -1} };
const int MAXN = 1e7 + 50;
const int Mod = 1e9 + 7;
const int INF = 0x7FFFFFFF;
const int LLINF = 0x7FFFFFFFFFFFFFFF;
const int MEMLLINF = 0x3F3F3F3F3F3F3F3F;
inline void solve(){
}
signed main(){
IO;
int T = 1;
// cin >> T;
while( T-- ){
solve();
}
}