记录编号 |
172510 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[网络流24题] 搭配飞行员 |
最终得分 |
100 |
用户昵称 |
forever |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.003 s |
提交时间 |
2015-07-25 11:28:11 |
内存使用 |
0.32 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
using namespace std;
int n,m,v[102],tot,match[102];
int head[102],x,y,ans;
struct dd
{
int zhong;
int next;
}jie[250];
void add(int h,int y)
{
tot++;
jie[tot].zhong=y;
jie[tot].next=head[h];
head[h]=tot;
}
bool dfs(int y)
{
for(int i=head[y];i!=-1;i=jie[i].next)
{
int yu=jie[i].zhong;
if(!v[yu])
{ v[yu]=1;
if(!match[yu]||dfs(match[yu]))
{
match[yu]=y;
return true;
}
}
}
return false;
}
int main()
{ freopen("flyer.in","r",stdin);
freopen("flyer.out","w",stdout);
memset(head,-1,sizeof(head));
scanf("%d%d",&n,&m);
while(scanf("%d%d",&x,&y)!=EOF)
{
add(x,y);
}
for(int i=1;i<=n;++i)
{
memset(v,0,sizeof(v));
if(dfs(i))
ans++;
}
printf("%d",ans);
//while(1);
}