# 初始模板
# 说明
- 环境要求:
g++ -std=c++11
# 使用
- 将模板复制到
./main.cpp
后食用。 - 配合命令行工具Qpro食用更香。
- 环境要求:
python::3
- 环境要求:
# Tips
# 代码
#include <iostream>
#include <iomanip>
#include <string>
#include <cstdio>
#include <cmath>
#include <cstring>
#include <algorithm>
#include <vector>
#include <queue>
#include <deque>
#include <list>
#include <map>
#include <unordered_map>
#include <unordered_set>
#include <set>
#include <bitset>
#include <fstream>
#include <ctime>
#include <stack>
#include <regex>
typedef long long LL;
typedef unsigned long long ULL;
#define pi pair<int,int>
#define lowbit(x) (x)&(-(x))
#define mp make_pair
#define irange(i, arr) for(auto&i:arr)
#define range(i, a, b) for(auto i=a;i<=b;++i)
#define itrange(i, a, b) for(auto i=a;i!=b;++i)
#define rerange(i, a, b) for(auto i=a;i>=b;--i)
#define IOS ios::sync_with_stdio(false), cin.tie(0)
#define fill(arr, tmp) memset(arr,tmp,sizeof(arr))
using namespace std;
/// here to write const value like: const int mod = 1e9+7
/// here to write data structure
void init() { /// here to write init function
}
void solve() { /// here to write main algorithm
}
int main(int argc, char**args) {
IOS;
init();
solve();
return 0;
}
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
53
54
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
53
54