JOJ2672 Hanoi Tower Once More

16 / 20
Problem I: Hanoi Tower Once More
Input File: i.in Output: stdout
Description
You know the game of Hanoi Tower, right? People stopped moving discs from
peg to peg after they know the number of steps needed to complete the entire task.
But on the other hand, they didn't not stopped thinking about similar puzzles with the
Hanoi Tower. Mr. S invented a little game on it. The game consists of N pegs and a
LOT of balls. Each ball has a different number. The balls look ordinary, but they are
actually magic. If the sum of the numbers on two balls is NOT a square number, they
will push each other with a great force when they're too closed, so they can NEVER
be put together touching each other.
The player should place one ball on the top of a peg at a time. And we must start
from the smallest number all the way to the largest .So no ball with a smaller number
should be above a ball with a larger number.
Here comes our question: Given the number on each ball, how many pegs, at
least, are needed to make all the balls placed?
Input
The input consists of T test cases. The number of test cases T is given in the first
line of the input. Each test case starts with a line containing one integers n (n≤300),
which is the amount of balls. In the next line, n different positive integers, the number
on each ball, is given.
Output
Print the minimum pegs needed to make all the balls placed.
Sample Input
2
4
1 2 3 4
4
1 3 6 10
2010 Yuanguang Cup ACM-ICPC Collegiate Programming Contest
17 / 20
Sample Output
3
1

 

最小路径覆盖

 

#include<stdio.h>
#include<string.h>
#include<math.h>
#include<algorithm>
using namespace std;
bool usedif[305];
int link[305];
bool mat[305][305];
int a[305];
int gx,gy;
bool can(int t)
{
    for(int i=1; i<=gy; i++) //注意范围
    {
        if(usedif[i]==0&&mat[t][i]) //Y中的顶点i未匹配且t与i之间有边
        {
            usedif[i]=1;
            if(link[i]==-1||can(link[i])) //link[i]=-1表示顶点i还未匹配
            {
                link[i]=t;
                return true;
            }
        }
    }
    return false;
}
int MaxMatch()
{
    int num=0;
    memset(link,-1,sizeof(link));
    for(int i=1; i<=gx; i++) //对X中的每个顶点在Y中寻找与其匹配的顶点,注意范围
    {
        memset(usedif,0,sizeof(usedif));
        if(can(i))  num++;
    }
    return num;//返回最大匹配数
}
bool check(int x)
{
    int t=(int) sqrt(x);
    if(t*t==x) return true;
    else return false;
}
bool cmp(int a,int b)
{
    return a<b;
}
int main()
{
    int T;
    scanf("%d",&T);
    while(T--)
    {
        int n;
        scanf("%d",&n);
        gx=n;
        gy=n;
        for(int i=1;i<=n;i++)  scanf("%d",&a[i]);
        memset(mat,0,sizeof(mat));
        sort(a+1,a+n+1,cmp);
        for(int i=1;i<=n;i++)
          for(int j=i+1;j<=n;j++)
          if(check(a[i]+a[j]))  mat[i][j]=1;
        printf("%d/n",n-MaxMatch());
    }
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值