-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcf.cpp
66 lines (57 loc) · 1.33 KB
/
cf.cpp
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <bits/stdc++.h>
#include <sys/time.h>
using namespace std;
typedef long long int ll;
typedef long double ld;
#define pb push_back
#define mp make_pair
#define pf push_front
#define ff first
#define ss second
#define vll vector<ll>
#define vvll vector<vll>
#define vld vector<ld>
#define pll pair<ll, ll>
#define pld pair<ld, ld>
#define vpll vector<pll>
#define vpld vector<pld>
#define all(X) X.begin(), X.end()
#define rall(X) X.rbegin(), X.rend()
#define endl "\n"
#define sz(x) ((ll)((x).size()))
vll emptyVector;
const ll MAX = 2e5 + 1;
const ll INF = 1e10 + 1;
const ll MOD = 1e9 + 7;
const ld PI = acosl(-1);
ll binaryExpo(ll x, ll n) {
if (n == 0)
return 1;
if (n % 2 == 0)
return binaryExpo((x * x), n / 2) % MOD;
return (x * binaryExpo((x * x), n / 2)) % MOD;
}
ll gcd(ll a, ll b) {
if (b == 0)
return a;
return gcd(b, a % b);
}
ll lcm(ll a, ll b) {
// Using the fact that: a * b = lcm * gcm
return a / gcd(a, b) * b;
}
// /*------------------------------------------- CODE STARTS FROM HERE ------------------------------------------*/
void solve() {
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int T;
// cin >> T;
T = 1;
for (int t = 1; t <= T; t++) {
// cout << "Case #" << t << ": ";
solve();
}
return 0;
}