记录编号 |
495546 |
评测结果 |
AAAAAAAAAAA |
题目名称 |
[网络流24题] 最小路径覆盖问题 |
最终得分 |
100 |
用户昵称 |
Shirry |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.010 s |
提交时间 |
2018-04-20 21:45:27 |
内存使用 |
0.31 MiB |
显示代码纯文本
#include<cstdio>
#include<vector>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=200;
vector<int>p[maxn];
int n,m,pre[maxn],match[maxn];
bool vis[maxn];
bool hungry(int x){
for(int i=0;i<(int)p[x].size();i++){
int u=p[x][i];
if(vis[u])continue;
vis[u]=1;
if(!match[u]||hungry(match[u])){
match[u]=x;pre[x]=u;
return true;
}
}
return false;
}
int solve(){
int res=0;
for(int i=1;i<=n;i++){
memset(vis,0,sizeof(vis));
res+=hungry(i);
}
return res;
}
int main(){
freopen("path3.in","r",stdin);
freopen("path3.out","w",stdout);
scanf("%d%d",&n,&m);
int u,v;
for(int i=1;i<=m;i++)scanf("%d%d",&u,&v),p[u].push_back(v);
int ans=solve();
for(int i=1;i<=n;i++){
if(!match[i]){
u=i;
while(u){
printf("%d ",u);
u=pre[u];
}
printf("\n");
}
}
printf("%d\n",n-ans);
return 0;
}