摘要: #include #include #include #include #include #define INF 0x3f3f3f3f using namespace std; struct edge{ int from,to,cap,cost,next; }E[600000]; int tot; int head[300];int dis[300]; int inq[300];... 阅读全文
posted @ 2016-08-29 15:45 HITLJR 阅读(507) 评论(0) 推荐(0)