-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTemplate.cpp
More file actions
52 lines (48 loc) · 1.38 KB
/
Copy pathTemplate.cpp
File metadata and controls
52 lines (48 loc) · 1.38 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
#include <iostream>
#include <sstream>
#include <algorithm>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <limits>
#include <iomanip>
#include <utility>
#include <numeric>
#include <functional>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
using namespace std;
#define FOR(i, m, n) for(int i = (m); i < (n); ++i)
#define RFOR(i, m, n) for(int i = (m); i > (n); --i)
#define REP(i, n) FOR(i, 0, n)
#define EACH(c, x) for(auto& x : (c))
#define EXIST(c, k) ((s).fined((k)) != (s).end())
#define SORT(c) (sort((c).begin(), (c).end()))
#define CLR(a) memset((a), 0, sizeof((a)))
#ifdef EVAL
#define DUMP(a) cerr << #a << " = " << (a) << endl
#define DEBUG(a) cerr << #a << " = " << (a) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl
#else
#define DUMP(a)
#define DEBUG(a)
#endif
#define PII pair<int, int>
constexpr double PI = acos(-1.0);
constexpr double EPS = 1e-10;
template<typename T> inline T SQR(T a){return a*a;}
template<typename T> inline T POW(T a,int n){int res=1;while(n--)res*=a;return res;}
inline int toInt(string s) {int v;istringstream sin(s);sin>>v;return v;}
template<class T> inline string toString(T x) {ostringstream sout;sout<<x;return sout.str();}
using ll = long long;
using ull = unsigned long long;
int main(){
cin.tie(0);
ios::sync_with_stdio(false);
return 0;
}