forked from phumipatc/Algorithm
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTemplate.cpp
More file actions
Latest commit
19 lines (17 loc) · 367 Bytes
/
Copy pathTemplate.cpp
File metadata and controls
19 lines (17 loc) · 367 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
Task : Template
Author :
Language : C++
Explanation :
*/
#include<bits/stdc++.h>
#defineall(x) begin(x), end(x)
#definesz(x) (int)(x).size()
#defineMOD (LL)(1e9 + 7)
usingnamespacestd;
constint dir4[2][4] = {{1, -1, 0, 0}, {0, 0, 1, -1}};
constint dir8[2][8] = {{-1, -1, -1, 0, 1, 1, 1, 0}, {-1, 0, 1, 1, -1, 0, 1, -1}};
intmain()
{
return0;
}