-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.cpp
More file actions
36 lines (33 loc) · 1 KB
/
Copy pathtemplate.cpp
File metadata and controls
36 lines (33 loc) · 1 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
#include <bits/stdc++.h>
using namespace std;
#pragma GCC optimize("O3,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
// ---------- Type shortcuts ----------
//#define int long long // avoid overflow headaches (watch out: changes main's signature too)
// #define endl '\n' // NEVER use std::endl in loops, it flushes the stream every time
// typedef long long ll;
// typedef unsigned long long ull;
// typedef pair<int,int> pii;
// typedef vector<int> vi;
const int MOD = 1e9 + 7;
const int INF = 1e18;
inline int fastRead() {
int x = 0, c = getchar_unlocked(), neg = 1;
while (c < '0' || c > '9') { if (c == '-') neg = -1; c = getchar_unlocked(); }
while (c >= '0' && c <= '9') { x = x * 10 + (c - '0'); c = getchar_unlocked(); }
return x * neg;
};
void solve() {
//solution here
};
int32_t main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int t = 1;
cin >> t;
while (t--) {
solve();
}
return 0;
}