码迷,mamicode.com
首页 > 其他好文 > 详细

HDU5090 Game with Pearls

时间:2017-03-08 21:25:36      阅读:211      评论:0      收藏:0      [点我收藏+]

标签:with   text   space   std   logs   blog   scanf   const   amp   

/*
HDU5090 Game with Pearls
http://acm.hdu.edu.cn/showproblem.php?pid=5090
匈牙利算法
 *
 */

#include<stdio.h>
#include<algorithm>
using namespace std;
const int Nmax=305;
int t,n,k,x,ans;
int match[Nmax],book[Nmax],map[Nmax][Nmax];
int init()
{
    ans=0;
    for(int i=1;i<=n;i++)
        for(int j=1;j<=n;j++)
            map[i][j]=0;
    for(int i=1;i<=n;i++)
        match[i]=book[i]=0;
}

int dfs(int u)
{
    for(int i=1;i<=n;i++)
    {
        if(map[i][u] && !book[i])
        {
            book[i]=1;
            if(!match[i] || dfs(match[i]))
            {
                match[i]=u;
                return 1;
            }
        }
        
    }
    return 0;
}

int main()
{
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d%d",&n,&k);
        init();
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&x);
            for(int j=x;j<=n;j+=k)
                map[j][i]=1;
        }
        for(int i=1;i<=n;i++)
        {
            for(int j=1;j<=n;j++) book[j]=0;
            if(dfs(i))
                ans++;
        }
        if(ans==n)
            printf("Jerry\n");
        else
            printf("Tom\n");
    }
    return 0;
}

 

HDU5090 Game with Pearls

标签:with   text   space   std   logs   blog   scanf   const   amp   

原文地址:http://www.cnblogs.com/BBBob/p/6522950.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!