-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.cpp
More file actions
executable file
·33 lines (32 loc) · 978 Bytes
/
template.cpp
File metadata and controls
executable file
·33 lines (32 loc) · 978 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
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#define fr first
#define se second
#define rep(i,a,b) for(int i = (a); i < (b); ++i)
#define rrep(i,a,b) for(int i = (a); i > (b); --i)
#define trav(x,a) for(auto& x:a)
#define sz(x) (long long)(x).size()
#define all(x) (x).begin(),(x).end()
#define IN(i,l,r) ((l)<=(i)&&(i)<=(r))
#define pb push_back
#define ones __builtin_popcountll
#define vt vector
#define MULTI int _; cin >> _; while(_--)
using namespace std;
using namespace __gnu_pbds;
template <class T>
using OSTree = tree<T,null_type,less<T>,rb_tree_tag,tree_order_statistics_node_update>;
typedef long long ll;
typedef pair<int,int> pi;
typedef pair<long long, long long> pll;
typedef vector<int> vi;
typedef vector<long long> vll;
typedef vector<vector<int>> vvi;
typedef vector<vector<long long>> vvl;
int main(){
cin.tie(0)->sync_with_stdio(0);
// #ifndef zzz
// freopen(".in","r",stdin);
// freopen(".out","w",stdout);
// #endif
}