标签:sam algorithm out zoj head memset put 电脑 else
Input
Output
输出文件应包含T行。对于每一组数据,如果该关卡有解,输出一行Yes;否则输出一行No。
Sample Input
2 2 0 0 0 1 3 0 0 1 0 1 0 1 0 0
Sample Output
No Yes 【数据规模】 对于100%的数据,N ≤ 200
题解:这道题目数据范围还可以,一开始向BFS思路去考虑,但是十分复杂。
所以baidu了以下题解,发现,同行,或者同列的点,变换后,是不变的。
所以我们只需要判断,不同行,列中是否都有点就可以了,就是二分图
最小点覆盖,但是不是求这个,只需要判断答案是否为n即可。
1 #include<cstring> 2 #include<cmath> 3 #include<iostream> 4 #include<algorithm> 5 #include<cstdio> 6 #define N 100007 7 using namespace std; 8 9 int cas,n; 10 int cnt,head[N],next[N],rea[N]; 11 int flag[N],yy[N]; 12 13 void add(int u,int v) 14 { 15 cnt++; 16 next[cnt]=head[u]; 17 head[u]=cnt; 18 rea[cnt]=v; 19 } 20 bool dfs(int u) 21 { 22 for(int i=head[u];i!=-1;i=next[i]) 23 { 24 int v=rea[i]; 25 if(flag[v]==false) 26 { 27 flag[v]=1; 28 if(yy[v]==0||dfs(yy[v])) 29 { 30 yy[v]=u; 31 return true; 32 } 33 } 34 } 35 return false; 36 } 37 int main() 38 { 39 // freopen("1.in","r",stdin); 40 // freopen("fzy.out","w",stdout); 41 scanf("%d",&cas); 42 while (cas--) 43 { 44 cnt=0; 45 memset(head,-1,sizeof(head)); 46 scanf("%d",&n); 47 int x; 48 for (int i=1;i<=n;i++) 49 for (int j=1;j<=n;j++) 50 { 51 scanf("%d",&x); 52 if (x==1) add(i,j); 53 } 54 int ans=0; 55 memset(yy,0,sizeof(yy)); 56 for (int i=1;i<=n;i++) 57 { 58 memset(flag,0,sizeof(flag)); 59 ans+=dfs(i); 60 } 61 if (ans==n) printf("Yes\n"); 62 else printf("No\n"); 63 } 64 }
[bzoj1059] [ZJOI2007] 矩阵游戏 (二分图匹配)
标签:sam algorithm out zoj head memset put 电脑 else
原文地址:http://www.cnblogs.com/fengzhiyuan/p/7598888.html