-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfzcpp
More file actions
42 lines (36 loc) · 807 Bytes
/
Copy pathfzcpp
File metadata and controls
42 lines (36 loc) · 807 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
#include <vector>
#include <list>
#include <map>
#include <set>
#include <deque>
#include <stack>
#include <bitset>
#include <algorithm>
#include <functional>
#include <numeric>
#include <utility>
#include <sstream>
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <cstring>
#define MMset(a, b) memset(a, b, sizeof(a))
#define MK make_pair
#define PB push_back
int dirx[] = {0,1,-1,0,1,1,-1,-1};
int diry[] = {1,0,0,-1,1,-1,1,-1};
#define VI vector<int>
#define VS vector<string>
using namespace std;
class <%:class-name%> {
public:
<%:return-type%> <%:method-name%>(<%:param-type-list%>);
};
<%:return-type%> <%:class-name%>::<%:method-name%>(<%:param-list%>) {
<%:set-caret%>
}
<%:testing-code%>
//Powered by [KawigiEdit] 2.0!