
模板
believe_what
真是个无奈的故事呢。。。
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
poj3281最大流(模板)
#include #include #include #include #include #include using namespace std; const int maxn=400+5; const int inf=9999999; struct edge{int to,cap,rev;}; vectorg[maxn]; int level[maxn]={},iter[maxn]原创 2017-12-22 20:34:29 · 204 阅读 · 0 评论 -
_int128输出挂
转载:http://wangmingxuan.cn/?post=56 std::ostream& operator<<(std::ostream& os, __int128 t) { if (t==0) return os << "0"; if (t<0) { os<<"-"; t=-t; } int a[50],ai=0;转载 2017-12-28 22:07:54 · 881 阅读 · 0 评论