zoukankan      html  css  js  c++  java
  • (匈牙利算法) hdu 2119

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<string>
    #include<cmath>
    #include<algorithm>
    #include<cstdlib>
    using namespace std;
    int n,m,a[110][110],g[110][110],mark[110],link[110],ans;
    bool dfs(int t)
    {
          for(int i=0;i<m;i++)
          {
                if(mark[i]==-1&&g[t][i])
                {
                      mark[i]=1;
                      if(link[i]==-1||dfs(link[i]))
                      {
                            link[i]=t;
                            return true;
                      }
                }
          }
          return false;
    }
    int main()
    {
          while(scanf("%d%d",&n,&m)!=EOF)
          {
                if(n==0)
                      break;
                memset(link,-1,sizeof(link));
                memset(g,0,sizeof(g));
                ans=0;
                for(int i=0;i<n;i++)
                      for(int j=0;j<m;j++)
                            scanf("%d",&g[i][j]);
                for(int i=0;i<n;i++)
                {
                      memset(mark,-1,sizeof(mark));
                      if(dfs(i))
                            ans++;
                }
                printf("%d
    ",ans);
          }
    }
    

      

    Matrix

    Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 2076    Accepted Submission(s): 911


    Problem Description
    Give you a matrix(only contains 0 or 1),every time you can select a row or a column and delete all the '1' in this row or this column .

    Your task is to give out the minimum times of deleting all the '1' in the matrix.
     
    Input
    There are several test cases.

    The first line contains two integers n,m(1<=n,m<=100), n is the number of rows of the given matrix and m is the number of columns of the given matrix.
    The next n lines describe the matrix:each line contains m integer, which may be either ‘1’ or ‘0’.

    n=0 indicate the end of input.
     
    Output
    For each of the test cases, in the order given in the input, print one line containing the minimum times of deleting all the '1' in the matrix.
     
    Sample Input
    3 3 0 0 0 1 0 1 0 1 0 0
     
    Sample Output
    2
     
    Author
    Wendell
     
    Source
     
  • 相关阅读:
    顺时针打印二维矩阵
    hbase的rowKey设计原则
    关于这段时间学习 EntityFramework的 一点感悟
    一次排序序号的补充
    我的第一段jQuery代码
    非常郁闷的 .NET中程序集的动态加载
    关于EF6的记录Sql语句 与 EntityFramework.Extend 的诟病
    排序更改
    ZhyjEye 简介
    js数组去重的4个方法
  • 原文地址:https://www.cnblogs.com/a972290869/p/4248735.html
Copyright © 2011-2022 走看看