-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask.template
More file actions
50 lines (41 loc) · 977 Bytes
/
Copy pathtask.template
File metadata and controls
50 lines (41 loc) · 977 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
44
45
46
47
48
49
50
#include <algorithm>
#include <array>
#include <climits>
#include <cmath>
#include <cstdint>
#include <cstdlib>
#include <fstream>
#include <iostream>
#include <map>
#include <set>
#include <sstream>
#include <string>
#include <queue>
#include <vector>
using namespace std;
#define forn(i, n) for (int i = 0; i < (int)(n); ++i)
#define mp make_pair
#define X first
#define Y second
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<bool> vb;
typedef vector<vb> vvb;
typedef vector<char> vc;
typedef vector<vc> vvc;
typedef vector<ll> vl;
typedef vector<vl> vvl;
typedef pair<int, int> Point;
typedef vector<Point> vp;
typedef vector<vp> vvp;
bool DBG = false;
#define check(e) \
((void) ((e) ? ((void)0) : __check(#e, __FILE__, __LINE__)))
#define __check(e, file, line) \
((void)printf("%s:%u: failed check `%s'\n", file, line, e), abort())
class %ClassName% {
public:
void solve(std::istream& in, std::ostream& out) {
}
};