摘要: 1 #include 2 using namespace std; 3 4 const int N (1e5+5), M(1e5+5); 5 6 int head[N]; 7 struct Edge{ 8 /* 9 r: residual capacity 10 */ 11 int v, r, nt; 12 }E[M]; 13 int ta... 阅读全文
posted @ 2015-12-02 22:11 Pat 阅读(379) 评论(0) 推荐(0) 编辑