题目链接
http://acm.hdu.edu.cn/showproblem.php?pid=2063
解题思路匈牙利算法,二分图模板
代码#include
using namespace std;
const int N = 1e3+10;
int vis[N], e[N][N], p[N];
int k, m, n;
bool find(int x) {
for(int i = 1;i
关注
打赏