-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.cpp
More file actions
38 lines (33 loc) · 941 Bytes
/
base.cpp
File metadata and controls
38 lines (33 loc) · 941 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
35
36
37
38
#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < n; i++)
#define repn(i, n) for (int i = 1; i <= n; i++)
#define int long long
#define fi first
#define se second
#define pb push_back
#define pii pair<int, int>
#define sz(v) (int)(v.size())
#define all(v) v.begin(), v.end()
#define mem(a, val) memset(a, val, sizeof(a))
#define trav(a, x) for (auto &a : x)
#define popcount(x) __builtin_popcountll(x)
template<typename T, typename U> static inline void amn(T &x, U y) { if(y < x) x = y; }
template<typename T, typename U> static inline void amx(T &x, U y) { if(x < y) x = y; }
const int MOD = 1e9 + 7;
const long long INF = 1e18;
const int N = 5e5 + 5;
void solve() {
}
signed main() {
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
#ifdef SIEVE
sieve();
#endif
int test_case = 1;
cin >> test_case;
while (test_case--) {
solve();
}
return 0;
}