标签:二分匹配
3 3 4 1 2 1 3 2 1 2 2 3 3 4 1 2 1 3 2 1 3 2
Board 1 have 0 important blanks for 2 chessmen. Board 2 have 3 important blanks for 3 chessmen.题意:下过像棋的人都知道 车 在棋盘中可以直走,只要没有棋子隔着,这也就是覆盖。要求最多可以放多少车。第T组数据,删边,看最大匹配数会不会发生改变,改变的话该点就是重要点,L是最多可以放车的个数。#include<stdio.h> #include<string.h> int map[105][105],vist[105],match[2][105],m; int find(int i,int k) { for(int j=1;j<=m;j++) if(vist[j]==0&&map[i][j]) { vist[j]=1; if(match[k][j]==0||find(match[k][j],k)) { match[k][j]=i; return 1; } } return 0; } int main() { int n,k,x,y,C,ans,t=0; while(scanf("%d%d%d",&n,&m,&k)>0) { memset(map,0,sizeof(map)); while(k--) { scanf("%d%d",&x,&y); map[x][y]=1; } memset(match,0,sizeof(match)); ans=0; for(int i=1;i<=n;i++) { memset(vist,0,sizeof(vist)); ans+=find(i,0); } C=ans; for(int j=1;j<=m;j++) if(match[0][j]) { for(int i=1;i<=m;i++) match[1][i]=match[0][i],vist[i]=0; int u=match[0][j]; match[1][j]=0; map[u][j]=0; if(find(u,1))C--; map[u][j]=1; } printf("Board %d have %d important blanks for %d chessmen.\n",++t,C,ans); } }
hdu1281棋盘游戏(二分匹配,最小顶点覆盖),布布扣,bubuko.com
标签:二分匹配
原文地址:http://blog.csdn.net/u010372095/article/details/38234965