文章

26

粉丝

407

获赞

0

访问

341.2k

头像
二分图匹配-車的位置
经验总结
发布于2020年4月17日 00:22
阅读数 13.2k

将行作为一个集合,将列作为另一个集合,进行二分图匹配,匹配数即匹配的边作为車的位置。

  1. #include<iostream>
  2. using namespace std;
  3. const int N = 210;
  4. int g[N][N], match[N], n, m, t;
  5. bool st[N];
  6. bool find(int x){
  7. for (int i = 1; i <= m; i++){
  8. if (st[i] || g[x][i]){
  9. continue;
  10. }
  11. st[i] = true;
  12. if (!match[i] || find(match[i])){
  13. match[i] = x;
  14. return true;
  15. }
  16. }
  17. return false;
  18. }
  19. int main(){
  20. cin >> n >> m >> t;
  21. for (int i = 1; i <= t; i++){
  22. int x, y;
  23. cin >> x >> y;
  24. g[x][y] = 1;
  25. }
  26. int ans = 0;
  27. for (int i = 1; i <= n; i++){
  28. memset(st, false, sizeof(st));
  29. if (find(i)){
  30. ans++;
  31. }
  32. }
  33. cout << ans << endl;
  34. system("pause");
  35. return 0;
  36. }

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发