码迷,mamicode.com
首页 > 其他好文 > 详细

BZOJ 1191 [HNOI2006]超级英雄Hero

时间:2017-09-29 10:08:57      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:注意   logs   ring   memset   noi   i++   ++   class   max   

二分图匹配水题。

一开始WA了一发,没注意一题没答上就要滚粗。真残酷啊。

就像Noip后将要滚粗的自己。

技术分享
//Twenty
#include<cstdio>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<cstring>
#include<queue>
#include<vector>
#define INF 0x3f3f3f3f
const int maxn=5005;
typedef long long LL;
int n,m,x,y,ecnt,fir[maxn],nxt[maxn],to[maxn],pre[maxn],ans,vis[maxn];
using namespace std;
void add(int u,int v) {
    nxt[++ecnt]=fir[u]; fir[u]=ecnt; to[ecnt]=v;
}
int find(int x) {
    for(int i=fir[x];i;i=nxt[i]) if(!vis[to[i]]){
        vis[to[i]]=1;
        if(!pre[to[i]]||find(pre[to[i]])) {
            pre[to[i]]=x;
            return 1;
         }        
    }
    return 0;
}
int main()
{
    //freopen(".in","r",stdin);
    //freopen(".out","w",stdout);
    scanf("%d%d",&n,&m);
    for(int i=1;i<=m;i++) {
        scanf("%d%d",&x,&y);
        add(i,x); if(y!=x) add(i,y);
    }
    for(int i=1;i<=m;i++) { 
        memset(vis,0,sizeof(vis));
        ans+=find(i);
    }
    printf("%d\n",ans);
    return 0;
}
View Code

 

BZOJ 1191 [HNOI2006]超级英雄Hero

标签:注意   logs   ring   memset   noi   i++   ++   class   max   

原文地址:http://www.cnblogs.com/Achenchen/p/7608384.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!