-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.cpp
49 lines (36 loc) · 856 Bytes
/
template.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
/**
* CONTEST NAME
* Problem PROBLEM_NUMBER - PROBLEM NAME
* TIME: TIME ms
* AUTHOR: Astik Roy
**/
#include <iostream>
// #include <ext/pb_ds/assoc_container.hpp>
// #include <ext/pb_ds/tree_policy.hpp>
// #include <functional>
using namespace std;
// using namespace __gnu_pbds;
typedef long long int ll;
typedef pair <int, int> pii;
// typedef tree<int , null_mapped_type , less<int> , rb_tree_tag , tree_order_statistics_node_update> ordered_set;
// typedef tree<int , null_mapped_type , less_equal<int> , rb_tree_tag , tree_order_statistics_node_update> ordered_multiset;
class Solution
{
public:
void solve()
{
// CODE
return;
}
};
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
Solution sol;
// int TC;
// cin >> TC;
// while(TC--)
sol.solve();
return 0;
}