摘要: 二分图判定问题。 #include <bits/stdc++.h> using namespace std; const int maxn = 2e4 + 50; struct edge { int v, cost; }; vector<edge> g[maxn]; int vis[maxn]; i 阅读全文
posted @ 2018-10-08 21:12 汪汪鱼 阅读(219) 评论(0) 推荐(0) 编辑