AcWing 376. 机器任务
Posted ruanmowen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AcWing 376. 机器任务相关的知识,希望对你有一定的参考价值。
算法
二分图+最小点覆盖
思路
节点
A的模式为左部节点,B的模式为右部节点
边
一个物品的A与B间连边。
2要素
及一条边中必选有一个节点 ,(要么在A加工,要么在B加工)
代码
#include <cstdio> #include <vector> #include <cstring> #include <iostream> using namespace std; const int N = 106; int n, m, k, f[N], ans; bool v[N]; vector<int> e[N]; bool dfs(int x) { for (unsigned int i = 0; i < e[x].size(); i++) { int y = e[x][i]; if (v[y]) continue; v[y] = 1; if (!f[y] || dfs(f[y])) { f[y] = x; return 1; } } return 0; } inline void Machine_Schedule() { cin >> m >> k; for (int i = 1; i < n; i++) e[i].clear(); for (int i = 0; i < k; i++) { int x, y; scanf("%d %d %d", &i, &x, &y); if (x && y) e[x].push_back(y); } memset(f, 0, sizeof(f)); ans = 0; for (int i = 1; i < n; i++) { memset(v, 0, sizeof(v)); ans += dfs(i); } cout << ans << endl; } int main() { while (cin >> n && n) Machine_Schedule(); return 0; }
以上是关于AcWing 376. 机器任务的主要内容,如果未能解决你的问题,请参考以下文章