摘要: A:直接枚举就行了。 #include<iostream> #include<cstdio> #include<cstring> #include<cstdlib> #include<algorithm> #include<vector> #define REP(i,a,b) for(int i=a 阅读全文
posted @ 2016-01-31 17:29 __560 阅读(207) 评论(0) 推荐(0) 编辑
摘要: struct Edge { int from,to,cap,flow,cost; }; struct MCMF { int n,m,s,t; vector<Edge> edges; vector<int> G[maxn]; int inq[maxn]; int d[maxn]; int p[maxn 阅读全文
posted @ 2016-01-31 17:16 __560 阅读(270) 评论(0) 推荐(0) 编辑