记录编号 | 162695 | 评测结果 | AAAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [网络流24题] 最小路径覆盖问题 | 最终得分 | 100 | ||
用户昵称 | 是否通过 | 通过 | |||
代码语言 | C++ | 运行时间 | 0.000 s | ||
提交时间 | 2015-05-18 20:03:51 | 内存使用 | 0.00 MiB | ||
#include<cstdio> #include<deque> #include<string.h> #include<iostream> using namespace std; int n,m,f[6000]={0},hand,co[6000]={0},now=0,ans1[160]={0},tot=0,ans=0,vis[310]={0},sb=0,go[310]={0}; deque<int> e[310]; int find(int x) { for(int i=0;i<e[x].size();i++) { int w=e[x][i]; if(co[w]==0) { co[w]=1; if(f[w]==0||find(f[w])==1) { f[w]=x; go[x]=w; return 1; } } } return 0; } int main() { freopen("path3.in","r",stdin); freopen("path3.out","w",stdout); scanf("%d%d",&n,&m); int a,b; hand=n; for(int i=1;i<=m;i++) { scanf("%d%d",&a,&b); e[a].push_back(b); } for(int i=1;i<=n;i++) { memset(co,0,sizeof(co)); if(find(i)==0) ans++; } for(int i=1;i<=n;i++) { //cout<<i<<" "<<f[i]<<endl; if(f[i]==0) { int u=i; do { printf("%d ",u); u=go[u]; }while(u!=0); printf("\n"); } } printf("%d\n",ans); return 0; }