
模板
The stroke
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
最大流模板
最近学习了最大流虽然学的一般都是会简单的使用,一下是我用过的几个模板 模板一sap: #include <bits/stdc++.h> /* 用maze来存图 */ typedef long long ll; using namespace std; const int MAXN=1100; int maze[MAXN][MAXN]; int gap[MAXN],dis[MAXN...原创 2018-08-21 10:05:05 · 344 阅读 · 0 评论 -
Treap模板
#include<cstdio> #include<iostream> #include<cmath> #include<cstring> #include<algorithm> #include<cctype> using namespace std; typedef long long ll; const int ...原创 2018-11-06 21:45:23 · 196 阅读 · 0 评论 -
划分树模板--by kuangbin模板
#include<cstdio> #include<iostream> #include<cmath> #include<cstring> #include<algorithm> #include<cctype> using namespace std; const int MAXN = 100010; int tree[2...转载 2018-11-08 17:23:24 · 185 阅读 · 0 评论