-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_template.cpp
More file actions
40 lines (30 loc) · 764 Bytes
/
_template.cpp
File metadata and controls
40 lines (30 loc) · 764 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
39
40
#include <bits/stdc++.h>
#define all(a) a.begin(), a.end()
#define pb push_back
#define eb emplace_back
#define sz(a) (int) a.size()
#define bitcount(a) (int) __builtin_popcount(a)
#define bitcountll(a) (int) __builtin_popcountll(a)
#define rep(i, from, to) for (int i = from; i < (to); ++i)
using namespace std;
typedef long long int ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef pair<double, double> pdd;
typedef vector<int> vi;
const int N = (int) 1e5 + 10;
void solve1() {
}
void solve2() {
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.precision(20);
cout << fixed;
solve1();
solve2();
cout.flush();
return 0;
}