-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path##TEMPLATE.cpp
More file actions
41 lines (38 loc) · 870 Bytes
/
Copy path##TEMPLATE.cpp
File metadata and controls
41 lines (38 loc) · 870 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
#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <sstream>
#include <queue>
#include <deque>
#include <bitset>
#include <iterator>
#include <list>
#include <stack>
#include <map>
#include <set>
#include <functional>
#include <numeric>
#include <utility>
#include <limits>
#include <time.h>
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
using namespace std;
#define fr(i, b, c) for (int i=(b); i < (c); i++)
#define fre(a, b, c) for (int(a)=(b); (a) <= (c); ++(a))
#define frn(a, b, c) for (int(a)=(b); (a) >= (c); --(a))
#define frs(a, b, c) for (int(a)=(b); (a) * (a) <= (c); ++(a))
#define frc(a, b, c) for (char(a)=(b); (a) <= (c); ++(a))
typedef long long ll;
#define testcase long long t; cin>>t;
int main()
{
testcase;
while(t--){
}
return 0;
}