-
Notifications
You must be signed in to change notification settings - Fork 132
/
Copy pathcp_template.cpp
51 lines (36 loc) · 1.04 KB
/
cp_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
50
51
#include <bits/stdc++.h>
#define FOR(i,a,b) for(int i = a; i <= b; i++)
#define DOWN(i,a,b) for(int i = a; i >= b; i--)
#define FORV(i,a) for(typeof(a.begin()) i = a.begin(); i != a.end(); i++)
#define FR(i,a) for(int i = 0; i < a; i++)
#define REP(i,a) for(int i = 0; i < a; i++)
#define Rep(i,a) for(int i = 0; i < a; i++)
#define For(i,a,b) for(int i = a; i <= b; i++)
#define sqr(x) (x)*(x)
#define dout debug && cout
#define next(i,n) ((i == n) ? 1 : i + 1) //1..n
#define prev(i,n) ((i == 1) ? n : i - 1) //1..n
#define ll long long
#define ull unsigned long long
/* CONSTANT */
#define oo 1000000002
/* DEBUGGING */
bool debug = false;
/* MAIN PROGRAM */
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin);
freopen("error.txt", "w", stderr);
freopen("output.txt", "w", stdout);
#endif
int t;
cin >> t;
while (t--) {
//write your code here
}
return 0;
}