题意:
有一个城市,所有街道都是单行道,每条街道和两个路口相连,并且是个无环的图。
求最小数量的伞兵,使得这些伞兵可以访问所有路口。
解析:
二分图。
最小路径覆盖 = 顶点数 - 最大匹配。
代码:
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <cstring>
#include <cmath>
#include <stack>
#include <vector>
#include <queue>
#include <map>
#include <set>
#include <climits>
#include <cassert>
#define LL long long
using namespace std;
const int inf = 0x3f3f3f3f;
const int maxn = 1000 + 10;
const double eps = 1e-8;
const double pi = acos(-1.0);
const double ee = exp(1.0);
vector<int> g[maxn];
int fr[maxn];
bool vis[maxn];
int n, m;
bool match(int v)
{
for (int i = 0; i < g[v].size(); i++)
{
int u = g[v][i];
if (!vis[u])
{
vis[u] = true;
if (fr[u] == -1 || match(fr[u]))
{
fr[u] = v;
return true;
}
}
}
return false;
}
int hungary()
{
int ret = 0;
memset(fr, -1, sizeof(fr));
for (int i = 1; i <= n; i++)
{
memset(vis, false, sizeof(vis));
if (match(i))
{
ret++;
}
}
return ret;
}
int main()
{
#ifdef LOCAL
freopen("in.txt", "r", stdin);
#endif // LOCAl
int ncase;
scanf("%d", &ncase);
while (ncase--)
{
int k;
scanf("%d%d", &n, &k);
for (int i = 0; i <= n; i++)
{
g[i].clear();
}
while (k--)
{
int fr, to;
scanf("%d%d", &fr, &to);
g[fr].push_back(to);
}
printf("%d\n", n - hungary());
}
return 0;
}