• bzoj 1059 [ZJOI2007]矩阵游戏——匈牙利算法


    题目:https://www.lydsy.com/JudgeOnline/problem.php?id=1059

    发现不管怎么换,同一列的元素还是在同一列,同一行的元素还是在同一行。

    所以必要条件是每一行、每一列都至少有一个黑格子。

    但这不是充要条件。比如一个L形的就不能。

    如果从答案向别的情况变换的话,变换到的各种情况一定是:如果每一列都只贡献一个黑格子,它们能占满所有行。

    行列连边跑一个最大匹配看能不能都匹配上就行了。

    #include<iostream>
    #include<cstdio>
    #include<cstring>
    #include<algorithm>
    using namespace std;
    const int N=205;
    int T,n,hd[N],xnt,pre[N];
    bool flag,vis[N];
    struct Ed{
        int nxt,to;Ed(int n=0,int t=0):nxt(n),to(t) {}
    }ed[N*N];
    int rdn()
    {
        int ret=0;char ch=getchar();
        while(ch>'9'||ch<'0')ch=getchar();
        while(ch>='0'&&ch<='9')(ret*=10)+=ch-'0',ch=getchar();
        return ret;
    }
    void add(int x,int y)
    {
        ed[++xnt]=Ed(hd[x],y);hd[x]=xnt;
    }
    bool dfs(int cr)
    {
        for(int i=hd[cr],v;i;i=ed[i].nxt)
            if(!vis[v=ed[i].to])
            {
                vis[v]=1;
                if(!pre[v]||dfs(pre[v]))
                {
                    pre[v]=cr;return true;
                }
            }
        return false;
    }
    int main()
    {
        T=rdn();
        while(T--)
        {
            memset(hd,0,sizeof hd);xnt=0;
            memset(pre,0,sizeof pre);flag=0;
            n=rdn();int x;
            for(int i=1;i<=n;i++)
                for(int j=1;j<=n;j++)
                {
                    scanf("%d",&x);
                    if(x)add(i,j);
                }
            for(int i=1;i<=n;i++)
            {
                memset(vis,0,sizeof vis);
                if(!dfs(i)){flag=1;break;}
            }
            puts(flag?"No":"Yes");
        }
        return 0;
    }
  • 相关阅读:
    jquery使用--常见前端效果实现
    Quartz —— Spring 环境下的使用
    java设计模式--外观模式(Facade)
    java设计模式--装饰模式(Decorator)
    Java开发中的23种设计模式详解(转)
    java设计模式--工厂模式
    选择排序
    序列化
    解析器
    版本控制
  • 原文地址:https://www.cnblogs.com/Narh/p/9372033.html
Copyright © 2020-2023  润新知