-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcc_template.cpp
More file actions
43 lines (37 loc) · 850 Bytes
/
cc_template.cpp
File metadata and controls
43 lines (37 loc) · 850 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
41
42
43
// Template for Competitive Programming
#include <bits/stdc++.h>
using namespace std;
#define fo(i, n) for (i = 0; i < n; i++)
#define si(x) scanf("%d", &x)
#define sl(x) scanf("%lld", &x)
#define ss(s) scanf("%s", s)
#define pi(x) printf("%d\n", x)
#define pl(x) printf("%lld\n", x)
#define ps(s) printf("%s\n", s)
#define pb push_back
#define mp make_pair
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define clr(x) memset(x, 0, sizeof(x))
#define sortall(x) sort(all(x))
typedef pair<int, int> pii;
typedef pair<ll, ll> pl;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef vector<pii> vpii;
// Drive Code
int main()
{
// Fast Input/Output
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
// Test Cases
int t = 1;
cin >> t;
deb(t);
while (t--) {
}
return 0;
}