-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
73 lines (53 loc) · 1.3 KB
/
main.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
67
68
69
70
// F
#pragma GCC optimize("Ofast")
//#pragma GCC target("avx2,popcnt,bmi")
#include "bits/stdc++.h"
// ya gey
using namespace std;
typedef long long ll;
typedef long double ld;
//typedef __int128_t fbl;
#ifdef DEBUG
#define __lg log2
#endif
#define MOD ll(1e9+7)
#define INF ll(1e18)
#define SIZE 500100
#define pb push_back
#define ppb pop_back
#define f first
#define s second
#define all(x) x.begin(), x.end()
#define vout(x) for (auto u : x)cout << u << ' ';
#define rndm drist(rng)
#define loop(i, n) for (ll i = 0; i < n; i++)
#define loopone(i, n) for (ll i = 1; i <= n; i++)
#define loopb(i, n) for (ll i = n - 1; i >= 0; i--)
#define loopbone(i, n) for (ll i = n; i > 0; i--)
#define looptr(u, g, ind) for (auto u : g[ind])if (u != ind)
#define salo(x, comp) sort(x.begin(), x.end(), comp);
#define bab(i, n) for(auto i : n)
mt19937_64 rng(time(0));
uniform_int_distribution<ll> drist;
ll n, m, k, i, j, x, y, z, w;
string str, trash;
char chr;
ll sussy_baka;
ll B = 0;
//----------///
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
#ifdef DEBUG
freopen("test.txt", "r", stdin);
#else
//freopen("kthsubstr.in", "r", stdin);
//freopen("kthsubstr.txt", "w", stdout);
#endif
//
cin >> sussy_baka;
while (sussy_baka--) {
}
return 0;
}