摘要: const int maxn=1e5+7; const int maxm=1e5+7; const int inf=0x3f3f3f3f; struct Dinic { struct Edge { int next,f,to; } e[maxm]; int head[maxn],dep[maxn],tol,ans; int cur[maxn... 阅读全文
posted @ 2019-01-24 22:02 oc_co 阅读(266) 评论(0) 推荐(1)