-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathtemplate.cpp
More file actions
34 lines (28 loc) · 869 Bytes
/
template.cpp
File metadata and controls
34 lines (28 loc) · 869 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
#include <bits/stdc++.h>
using namespace std;
#define loop(i,l,r) for(int i=l; i<r; i++)
#define int long long
#define pb push_back
#define vi vector<int>
#define mkp make_pair<int,int>
#define umpii unordered_map<int,int>
#define maxheap priority_queue<int>
#define minheap priority_queue<int, vi,greater<int>>
#define setbits(x) __builtin_popcountll(x)
#define zerobits(x) __builtin_ctzll(x)
#define in_arr(A,n) loop(i,0,n) cin>>A[i];
#define p_arr(A,n) loop(i,0,n) cout<<A[i]
;
#define pln_arr(A,n) loop(i,0,n) cout<<A[i]<<endl
#define take_n int n; cin>>n;
#define take_arr int arr[n]; loop(i,0,n) cin>>arr[i];
const int mod= 1e9+7;
const int inf= 1e15;
void solve(){
}
int32_t main(){
int t;
cin>>t;
while(t--) solve();
return 0;
}