-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.cpp
More file actions
68 lines (60 loc) · 1.63 KB
/
template.cpp
File metadata and controls
68 lines (60 loc) · 1.63 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
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
// This code made by Muhammad Gilang Ramadhan
#include <bits/stdc++.h>
#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
using namespace __gnu_pbds;
using namespace std;
#define read(type) readInt<type>()
#define ll long long
#define nL "\n"
#define pb push_back
#define mk make_pair
#define pii pair<int, int>
#define a first
#define b second
#define vi vector<int>
#define all(x) (x).begin(), (x).end()
#define umap unordered_map
#define uset unordered_set
#define MOD 1000000007
#define imax INT_MAX
#define imin INT_MIN
#define exp 1e9
#define sz(x) (int((x).size()))
// typedef long long ll;
// typedef unsigned long long ull;
// typedef long double ld;
// typedef pair<ll, ll> pii;
// typedef vector<ll> vi;
// typedef vector<vi> vvi;
// typedef vector<pii> vp;
// typedef vector<bool> vb;
// typedef vector<string> vs;
typedef map<ll, ll> mii;
typedef map<char, ll> mci;
typedef priority_queue<ll> pq_mx;
typedef priority_queue<ll, vi, greater<>> pq_mn;
typedef tree<ll, null_type, less<>, rb_tree_tag, tree_order_statistics_node_update> pbds;
/*
* find_by_order(i) -> returns an iterator to the element at ith position (0 based)
* order_of_key(i) -> returns the position of element i (0 based)
*/
// const int N = 2e5 + 5;
// const int mod = 1e9 + 7;
// //const int mod = 998244353;
// const ll inf = 2e18;
// const ld eps = 1e-10, pi = acos(-1.0);
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
void solve(){
int t; cin >> t;
while(t--) {
}
}
int main()
{
ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
cin.tie(nullptr);
cout.tie(nullptr);
solve();
return 0;
}