Strategic Game HDU - 1054

Posted qingyuyyyyy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Strategic Game HDU - 1054相关的知识,希望对你有一定的参考价值。

#include<stdio.h>
#include<string.h>
#include<queue>
#include<algorithm>
using namespace std;
#define N 10100
int vis[N], h[N], used[N], maps[1510][1510], n, ans;
int e[N],ne[N],idx; 
void add(int a, int b)
{
    e[idx]=b;
    ne[idx]=h[a];
    h[a]=idx++;
}
bool Find(int u)
{
    for(int j=h[u]; j!=-1; j=ne[j])
    {
        int v = e[j];
        if(!vis[v])
        {
            vis[v] = 1;
            if(!used[v] || Find(used[v]))
            {
                used[v] = u;
                return true;
            }
        }
    }
    return false;
}
int main()
{
    int a, b, m;
    while(scanf("%d", &n)!=EOF)
    {
        idx = 0;
        memset(h, -1, sizeof(h));
        for(int i=0; i<n; i++)
        {
            scanf("%d:(%d)", &a, &m);
            while(m--)
            {
                scanf("%d", &b);
                add(a, b);
                add(b, a);
            }
        }
        ans = 0;
        memset(used, 0, sizeof(used));
        for(int i=0; i<n; i++)
        {
            memset(vis, 0, sizeof(vis));
            if(Find(i))
                ans++;
        }
        printf("%d
", ans/2);
    }
    return 0;
}

以上是关于Strategic Game HDU - 1054的主要内容,如果未能解决你的问题,请参考以下文章

HDU - 1054 Strategic Game 树形DP

HDU 1054 Strategic Game(树形dp)

HDU——T 1054 Strategic Game

HDU - 1054 Strategic Game

HDU1054 Strategic Game——匈牙利算法

HDU 1054 Strategic Game