Loading

摘要: 二分图的最大匹配 代码 #include <bits/stdc++.h> using namespace std; const int N = 505, M = 100005; int h[N], e[M], ne[M], idx; int match[N]; bool st[N]; int n1, 阅读全文
posted @ 2024-05-19 07:57 longwind7 阅读(51) 评论(0) 推荐(0)