BZOJ1191: [HNOI2006]超级英雄Hero
Posted Star_Feel
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BZOJ1191: [HNOI2006]超级英雄Hero相关的知识,希望对你有一定的参考价值。
【传送门:BZOJ1191】
简要题意:
给出m个问题,给出n个锦囊,每个问题可以用两种锦囊解决(有可能这两种锦囊是同一种,这就很尴尬,可能出数据的神犇有点儿懒),但每种锦囊只能用一次,而且只有解决了前面的问题才能解决后面的问题,求出最多能解决多少问题
题解:
就是很裸的二分图匹配啦,直接匈牙利。
参考代码:
#include<cstdio> #include<cstring> #include<cstdlib> #include<algorithm> #include<cmath> using namespace std; struct node { int x,y,next; }a[2100];int len,last[2100]; int match[2100]; void ins(int x,int y) { len++; a[len].x=x;a[len].y=y; a[len].next=last[x];last[x]=len; } bool chw[2100]; bool findmuniu(int x) { for(int k=last[x];k;k=a[k].next) { int y=a[k].y; if(chw[y]==true) { chw[y]=false; if(match[y]==0||findmuniu(match[y])==true) { match[y]=x; return true; } } } return false; } int main() { int n,m; scanf("%d%d",&n,&m); memset(match,0,sizeof(match)); len=0;memset(last,0,sizeof(last)); for(int i=1;i<=m;i++) { int y1,y2; scanf("%d%d",&y1,&y2); y1++;y2++; if(y1==y2) ins(i,y1+m); else { ins(i,y1+m); ins(i,y2+m); } } int ans=0; for(int i=1;i<=m;i++) { memset(chw,true,sizeof(chw)); if(findmuniu(i)==true) ans++; else break; } printf("%d\n",ans); return 0; }
以上是关于BZOJ1191: [HNOI2006]超级英雄Hero的主要内容,如果未能解决你的问题,请参考以下文章